Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
reachfh committed May 26, 2024
1 parent e54c9ad commit ef1b31b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,14 +152,14 @@ jobs:
release-tag: build-${{ github.run_number }}
release-info: ${{ steps.release-view.outputs.result }}
env:
RELEASE_TAG=build-${{ github.run_number }}
RELEASE_TAG: build-${{ github.run_number }}
steps:
# Releases require a tag on the repository
- name: Tag repository
run: |
echo "$RELEASE_TAG"
git tag "$RELEASE_TAG"
git push origin "$RELEASE_TAG"
# - name: Tag repository
# run: |
# echo "$RELEASE_TAG"
# git tag "$RELEASE_TAG"
# git push origin "$RELEASE_TAG"

- name: Create release
run: gh release create "$RELEASE_TAG" -n "Build $RELEASE_TAG"
Expand Down

0 comments on commit ef1b31b

Please sign in to comment.