Skip to content

Commit

Permalink
feat: updated pipeline (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescoL96 authored Jul 10, 2024
1 parent cd1d270 commit b38e0eb
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 2 deletions.
78 changes: 78 additions & 0 deletions .github/workflows/release-pullrequest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
name: release-pullrequest

on:
pull_request:
branches:
- main

env:
REGISTRY: ghcr.io

jobs:
package-amd64:
runs-on: buildjet-2vcpu-ubuntu-2204
permissions:
packages: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ github.repository }}

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

- name: Login to CR
uses: docker/#-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build docker image and push
id: docker_build_amd64
uses: docker/build-push-action@v4
with:
push: false
platforms: linux/amd64
labels: ${{ steps.meta.outputs.labels }}
outputs: type=image,name=${{ env.REGISTRY }}/${{ github.repository }},push-by-digest=true,name-canonical=true,push=true

package-arm64:
runs-on: buildjet-2vcpu-ubuntu-2204-arm
permissions:
packages: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ github.repository }}

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

- name: Login to CR
uses: docker/#-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build docker image and push
id: docker_build_arm64
uses: docker/build-push-action@v4
with:
push: false
platforms: linux/arm64
labels: ${{ steps.meta.outputs.labels }}
outputs: type=image,name=${{ env.REGISTRY }}/${{ github.repository }},push-by-digest=true,name-canonical=true,push=true
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: release
name: release-tag

on:
push:
Expand Down Expand Up @@ -106,6 +106,9 @@ jobs:

merge:
runs-on: buildjet-2vcpu-ubuntu-2204
permissions:
packages: write
contents: read
needs:
- package-amd64
- package-arm64
Expand Down Expand Up @@ -140,4 +143,4 @@ jobs:
- name: Inspect image
run: |
docker buildx imagetools inspect ${{ env.REGISTRY }}/${{ github.repository }}:${{ steps.meta.outputs.version }}
docker buildx imagetools inspect ${{ env.REGISTRY }}/${{ github.repository }}:${{ steps.meta.outputs.version }}

0 comments on commit b38e0eb

Please # to comment.