workflow #1

Merged
zukka77 merged 2 commits from workflow into master 2024-11-14 12:09:59 +01:00
2 changed files with 114 additions and 0 deletions

View file

@ -0,0 +1,57 @@
name: Create and publish Frontend a container image
on:
push:
branches: ["main", "test"]
release:
types: [published]
env:
REGISTRY: ${{forgejo.SERVER_URL}}
IMAGE_NAME: ${{forgejo.repository}}-fe
jobs:
build-and-push-image:
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ forgejo.REGISTRY }}
username: ${{ forgejo.repository_owner }}
password: ${{ secrets.PAT }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: https://github.com/docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Build and push Docker image FE
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64
file: Containerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

View file

@ -0,0 +1,57 @@
name: Create and publish Frontend a container image
on:
push:
branches: ["main", "test"]
release:
types: [published]
env:
REGISTRY: ${{forgejo.SERVER_URL}}
IMAGE_NAME: ${{forgejo.repository}}-worker
jobs:
build-and-push-image:
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ forgejo.REGISTRY }}
username: ${{ forgejo.repository_owner }}
password: ${{ secrets.PAT }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: https://github.com/docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Build and push Docker image FE
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64
file: Containerfile-worker
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}