parent
4ee1a91648
commit
34d24bdecc
@ -0,0 +1,58 @@ |
||||
name: Docker |
||||
|
||||
on: |
||||
push: |
||||
branches: [ master ] |
||||
|
||||
env: |
||||
REGISTRY: ghcr.io |
||||
IMAGE_NAME: ${{ github.repository }} |
||||
|
||||
jobs: |
||||
build: |
||||
|
||||
runs-on: ubuntu-latest |
||||
permissions: |
||||
contents: read |
||||
packages: write |
||||
id-token: write |
||||
|
||||
steps: |
||||
- name: Checkout repository |
||||
uses: actions/checkout@v2 |
||||
|
||||
- name: Install cosign |
||||
if: github.event_name != 'pull_request' |
||||
uses: sigstore/cosign-installer@main |
||||
|
||||
- name: Setup Docker buildx |
||||
uses: docker/setup-buildx-action@v1 |
||||
|
||||
- name: Log into registry ${{ env.REGISTRY }} |
||||
if: github.event_name != 'pull_request' |
||||
uses: docker/login-action@v1 |
||||
with: |
||||
registry: ${{ env.REGISTRY }} |
||||
username: ${{ github.actor }} |
||||
password: ${{ secrets.GITHUB_TOKEN }} |
||||
|
||||
- name: Extract Docker metadata |
||||
id: meta |
||||
uses: docker/metadata-action@v3 |
||||
with: |
||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} |
||||
|
||||
- name: Build and push Docker image |
||||
id: build-and-push |
||||
uses: docker/build-push-action@v2 |
||||
with: |
||||
context: . |
||||
push: ${{ github.event_name != 'pull_request' }} |
||||
tags: ${{ steps.meta.outputs.tags }} |
||||
labels: ${{ steps.meta.outputs.labels }} |
||||
|
||||
- name: Sign the published Docker image |
||||
if: ${{ github.event_name != 'pull_request' && !github.event.repository.private }} |
||||
env: |
||||
COSIGN_EXPERIMENTAL: "true" |
||||
run: cosign sign ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}@${{ steps.build-and-push.outputs.digest }} |
Loading…
Reference in new issue