Skip to content

Commit

Permalink
different action for release
Browse files Browse the repository at this point in the history
  • Loading branch information
emanuelef committed Aug 6, 2023
1 parent 876650e commit e97daf5
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 8 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/ghcr-build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
push:
branches:
- main
release:
types: [published]

env:
REGISTRY: ghcr.io
Expand All @@ -32,12 +30,6 @@ jobs:
run: |
echo "VERSION_NUMBER=$((1000+GITHUB_RUN_NUMBER))" >> $GITHUB_ENV
- name: Release version
if: ${{ github.event_name == 'release' }}
run: echo ${{ env.VERSION_NUMBER }}
env:
VERSION_NUMBER: ${{ github.event.release.tag_name }}

- name: Check out the repo
uses: actions/checkout@v3

Expand Down
57 changes: 57 additions & 0 deletions .github/workflows/ghcr-build-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Publish Docker image to GHCR

on:
release:
types: [published]

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

jobs:
push_to_registry:
name: Push Docker image to GH registry
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
echo "$GITHUB_CONTEXT"
- name: Check out the repo
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Log in to GitHub container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
#platforms: linux/amd64,linux/arm/v7,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit e97daf5

Please sign in to comment.