Skip to content

Commit

Permalink
ci: add pipeline during pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
braghettos committed May 21, 2024
1 parent 7d58ead commit 300185b
Show file tree
Hide file tree
Showing 2 changed files with 80 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/login-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/login-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 @@ -140,4 +140,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 300185b

Please sign in to comment.