add container builds CI
All checks were successful
Build Container / build (push) Successful in 5m31s
All checks were successful
Build Container / build (push) Successful in 5m31s
trigger workflow
This commit is contained in:
parent
1118fa4c89
commit
f5ea8f2e63
1 changed files with 40 additions and 0 deletions
40
.gitea/workflows/build-container.yml
Normal file
40
.gitea/workflows/build-container.yml
Normal file
|
@ -0,0 +1,40 @@
|
|||
name: Build Container
|
||||
run-name: Build Container
|
||||
on: ["workflow-dispatch", "push"]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Set up docker
|
||||
run: |
|
||||
curl -fsSL https://get.docker.com -o get-docker.sh
|
||||
sh get-docker.sh
|
||||
|
||||
- name: Set up qemu
|
||||
uses: https://github.com/docker/setup-qemu-action@v2
|
||||
|
||||
- name: Set up Buildx
|
||||
uses: https://github.com/docker/setup-buildx-action@v2
|
||||
|
||||
- name: Login to git.magmaus3.eu.org
|
||||
uses: https://github.com/docker/login-action@v2
|
||||
with:
|
||||
registry: git.magmaus3.eu.org
|
||||
username: ${{ secrets.PERSONAL_REG_USERNAME }}
|
||||
password: ${{ secrets.PERSONAL_REG_TOKEN }}
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Build and push
|
||||
uses: https://github.com/docker/build-push-action@v4
|
||||
env:
|
||||
ACTIONS_RUNTIME_TOKEN: ''
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64
|
||||
tags: |
|
||||
git.magmaus3.eu.org/magmaus3/iwm_browser:latest
|
||||
git.magmaus3.eu.org/magmaus3/iwm_browser:${{ gitea.sha }}
|
Loading…
Reference in a new issue