diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c15fed8..f3fa597 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Rust +name: Build and test on: push: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5ff7384..98866c7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,17 +35,29 @@ jobs: release: name: Release runs-on: ubuntu-latest + needs: + - bump-versions permissions: id-token: write contents: read + packages: write steps: - name: Checkout uses: actions/checkout@v4 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 - 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: