Skip to content

Commit

Permalink
chore: fix CI/CD workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
nirga committed Nov 15, 2024
1 parent 2ced62f commit 7bf9836
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Rust
name: Build and test

on:
push:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,12 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest
needs:
- bump-versions
permissions:
id-token: write
contents: read
packages: write

steps:
- name: Checkout
Expand All @@ -46,6 +49,13 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log in to the GitHub Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
Expand Down

0 comments on commit 7bf9836

Please sign in to comment.