Skip to content

Commit

Permalink
CI fix: Strip leading v for version number (#557)
Browse files Browse the repository at this point in the history
Fixes #555
  • Loading branch information
klieret authored Jun 5, 2024
1 parent 0c4f43d commit c634cac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-dockerhub-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- name: Get release name
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
- name: Run release script
run: ./release_dockerhub.sh sweagent ${{ env.RELEASE_VERSION }}

0 comments on commit c634cac

Please sign in to comment.