Skip to content

Commit

Permalink
Merge pull request #14 from runwaylab/docker
Browse files Browse the repository at this point in the history
Docker
  • Loading branch information
GrantBirki authored May 8, 2024
2 parents 56996ad + 1c9cf9c commit 92ad9ae
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 49 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: docker

on:
pull_request:
branches:
- main
push:
branches:
- main
tags:
- "v*.*.*"

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

permissions:
contents: read
packages: write
attestations: write
id-token: write

jobs:
docker:
name: docker
runs-on: ubuntu-latest

steps:
- name: checkout
uses: actions/checkout@v4

- name: extract image metadata
id: meta
uses: docker/[email protected]
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
- name: login to ghcr
if: github.event_name != 'pull_request'
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: build and push
id: push
uses: docker/[email protected]
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: generate artifact attestation
uses: actions/[email protected]
with:
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}}
subject-digest: ${{ steps.push.outputs.digest }}
push-to-registry: ${{ github.event_name != 'pull_request' }}
49 changes: 0 additions & 49 deletions .github/workflows/publish.yml

This file was deleted.

0 comments on commit 92ad9ae

Please sign in to comment.