GitHub Action to install and setup crane
name: Publish
on:
push:
branches: ['main']
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.15
- uses: actions/checkout@v2
- uses: imjasonh/[email protected]
- run: |
crane digest ubuntu
crane manifest ubuntu | jq
crane copy ubuntu ghcr.io/${{ github.repository }}/ubuntu-copyThat's it! This workflow will inspect and copy the ubuntu image to your repo's GitHub container registry namespace.
The action works on Linux and macOS runners.
By default, imjasonh/setup-crane installs the latest released version of crane.
You can select a version with the version parameter:
- uses: imjasonh/[email protected]
with:
version: v0.5.1To build and install crane from source using go get, specify version: tip.
By default, imjasonh/setup-crane configures crane to authorize requests to GitHub Container Registry, but you can configure it to useuse other registries as well.
To do this, you need to provide credentials to authorize the push.
You can use encrypted secrets to store the authorization token, and pass it to crane auth login before pushing:
- uses: imjasonh/[email protected]
- env:
auth_token: ${{ secrets.auth_token }}
run: |
echo "${auth_token}" | crane auth login https://my.registry --username my-username --password-stdin
crane digest my.registry/my/image
The @v0.1 in the uses statement refers to the version of the action definition in this repo.
Regardless of what version of the action definition you use, imjasonh/setup-crane will install the latest released version of crane unless otherwise specified with version:.