Skip to content

Commit

Permalink
OPS: Fix tag extraction in automated docker workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cortadocodes authored and andrew-platt committed Mar 28, 2024
1 parent c2e744f commit 58155a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-docker-image-automatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: Extract tag from release candidate branch name
id: extract-tag
run: echo "openfast-tag=${"${{ github.head_ref }}":3}" >> $GITHUB_OUTPUT
run: echo "openfast-tag=$(expr substr "${{ github.head_ref }}" 4 100)" >> $GITHUB_OUTPUT

- name: Build and push to registry
uses: docker/build-push-action@v5
Expand Down

0 comments on commit 58155a4

Please sign in to comment.