Skip to content

Commit

Permalink
ci: fix publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
igboyes committed Jan 20, 2024
1 parent 4edaeb5 commit 128605d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ jobs:
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v5
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install semantic-release
run: npm i [email protected] conventional-changelog-conventionalcommits@4.6.1
run: npm i [email protected] conventional-changelog-conventionalcommits@7.0.2
- name: Release
env:
GITHUB_USERNAME: ${{ secrets.GH_USERNAME }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
if: github.repository_owner == 'Virtool'
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Update Version
run: poetry version ${{github.event.release.tag_name}}
- name: Login
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.GH_USERNAME }}
Expand All @@ -33,7 +33,7 @@ jobs:
with:
images: ${{ env.REGISTRY }}/virtool/build-index
- name: Build and Push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
labels: ${{ steps.meta.outputs.labels }}
Expand Down

0 comments on commit 128605d

Please sign in to comment.