Skip to content

Commit

Permalink
fix: use main as ref
Browse files Browse the repository at this point in the history
  • Loading branch information
jodevsa committed May 12, 2023
1 parent 8f25167 commit d512549
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm install @semantic-release/commit-analyzer @semantic-release/release-notes-generator @semantic-release/changelog @semantic-release/git semantic-release/exec
echo "version=$(npx semantic-release --dryRun | grep -oP 'Published release \K.*? ')" >> "$GITHUB_OUTPUT"
echo "version=v$(npx semantic-release --dryRun | grep -oP 'Published release \K.*? ')" >> "$GITHUB_OUTPUT"
- uses: ./.github/workflows/build-images-workflow.yaml
name: build images
with:
set_new_images_as_latest: false
push: true
new_images_tag: ${{ steps.extract.outputs.version }}
ref: ${{ steps.extract.outputs.version }}
ref: main

release:
needs: [build-images]
Expand Down

0 comments on commit d512549

Please sign in to comment.