Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
gnuton committed Jan 25, 2024
1 parent d87c5cc commit 3985ea0
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,14 @@ jobs:
volumes:
- ${{ github.workspace }}:/project
steps:
- name: Setup git config
run: |
cd $HOME
ls -alh
# setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default
git config --global user.email "[email protected]"
git config --global user.name "Circle CI BOT"
git config --global push.default simple
- name: "Fetch code"
run: |
pwd
Expand Down Expand Up @@ -175,12 +183,6 @@ jobs:
with:
name: release-${{ matrix.model }}-${{ matrix.ui }}
path: ${{ github.workspace }}/artifacts
- name: Setup git config
run: |
# setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default
git config --global user.email "[email protected]"
git config --global user.name "Circle CI BOT"
git config --global push.default simple
- name: "Publish Manifest"
env:
UPDATE_DIR: "updates"
Expand Down

0 comments on commit 3985ea0

Please sign in to comment.