Skip to content

Commit

Permalink
Merge pull request #59 from gboutry/fix/publish
Browse files Browse the repository at this point in the history
Use skopeo from main archive
  • Loading branch information
hemanthnakkina authored Jul 1, 2024
2 parents 7a71d02 + 5de9e44 commit 195f0f7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/actions/publish-rock/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,16 @@ runs:
using: composite
steps:
- name: Log in to the Container registry
uses: docker/login-action@v3.1.0
uses: docker/login-action@v3.2.0
with:
registry: ghcr.io
username: ${{ inputs.username }}
password: ${{ inputs.password }}
- name: Install skopeo
shell: bash
run: sudo snap install --devmode --channel edge skopeo
run: |
sudo apt update
sudo apt install -y skopeo
- name: Install yq
shell: bash
run: sudo snap install yq
Expand Down

0 comments on commit 195f0f7

Please sign in to comment.