Skip to content

Commit

Permalink
Fixup release step
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Aug 3, 2024
1 parent d857931 commit 09cf7cd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/check-action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: check action works

permissions:
contents: read

on: [push]

jobs:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
push_to_registry:
name: Push Docker image to Docker hub
runs-on: ubuntu-latest
environment:
name: Build Docker images
steps:
- name: Check out the repository
uses: actions/checkout@v4
Expand All @@ -30,6 +32,7 @@ jobs:
uses: sudo-bot/action-docker-sign@latest
with:
image-ref: "docker.io/botsudo/action-docker-compose:latest"
private-key-id: "${{ secrets.DOCKER_PRIVATE_KEY_ID }}"
private-key-id: "${{ vars.DOCKER_PRIVATE_KEY_ID }}"
private-key: ${{ secrets.DOCKER_PRIVATE_KEY }}
private-key-passphrase: ${{ secrets.DOCKER_PRIVATE_KEY_PASSPHRASE }}
private-key-name: "${{ vars.DOCKER_PRIVATE_KEY_NAME }}"

0 comments on commit 09cf7cd

Please sign in to comment.