Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
nbradac authored Jun 7, 2024
1 parent 0edd7c1 commit bafe9e3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,20 @@ jobs: # these jobs run serially because of the 'needs:' keyword on each
- name: update version file
run: |
echo ${{ github.run_id }} >> version.txt
echo ${{ github.run_id }} > version.txt
git config --global user.name "the 'release' github action"
git config --global user.email "[email protected]"
git add version.txt
git commit -m 'update version'
git push
final-tag:
runs-on: ubuntu-latest
needs: tag
steps:
- name: checkout
uses: actions/checkout@v4

- name: Create/update tag 2
uses: actions/github-script@v7
with:
Expand All @@ -77,7 +84,6 @@ jobs: # these jobs run serially because of the 'needs:' keyword on each
sha: context.sha
})
push:
runs-on: ubuntu-latest
needs: package
Expand Down

0 comments on commit bafe9e3

Please sign in to comment.