73 lines
2.3 KiB
YAML
73 lines
2.3 KiB
YAML
on:
|
|
push:
|
|
tags:
|
|
- "latest"
|
|
env:
|
|
FORGEJO_FQDN: git.myservermanager.com
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
container:
|
|
image: node:20-bookworm
|
|
steps:
|
|
- name: Prepare requirements
|
|
run: |
|
|
apt-get update
|
|
apt-get install -y curl wget bash apt-transport-https ca-certificates gnupg
|
|
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker.gpg
|
|
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker.gpg] https://download.docker.com/linux/debian bookworm stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
apt-get update
|
|
apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin
|
|
|
|
- uses: actions/checkout@v3
|
|
name: Clone
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Login to Forgejo
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ${{ env.FORGEJO_FQDN }}
|
|
username: ${{ secrets.FORGEJO_USER }}
|
|
password: ${{ secrets.FORGEJO_TOKEN }}
|
|
|
|
- name: Build - executor-ubuntu
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
file: Dockerfile-ubuntu
|
|
push: true
|
|
tags: |
|
|
git.myservermanager.com/msm/executor-ubuntu:latest
|
|
|
|
- name: Build - executor-ubuntu-build-essential
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
file: Dockerfile-ubuntu-build-essential
|
|
push: true
|
|
tags: |
|
|
git.myservermanager.com/msm/executor-ubuntu-build-essential:latest
|
|
|
|
- name: Build - executor-ubuntu-ruby
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
file: Dockerfile-ubuntu-ruby
|
|
push: true
|
|
tags: |
|
|
git.myservermanager.com/msm/executor-ubuntu-ruby:latest
|
|
|
|
- name: Build - executor-alpine
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
file: Dockerfile-alpine
|
|
push: true
|
|
tags: |
|
|
git.myservermanager.com/msm/executor-alpine:latest
|
|
|
|
- name: Build - executor-alpine-java21
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
file: Dockerfile-alpine-java21
|
|
push: true
|
|
tags: |
|
|
git.myservermanager.com/msm/executor-alpine-java21:latest
|