docker-images/.gitea/workflows/publish.yaml
Workflow config file is invalid. Please check your config file: yaml: line 15: did not find expected '-' indicator
2023-04-11 02:51:14 +01:00

60 lines
1.7 KiB
YAML

name: Publish
on:
push:
branches:
- "master"
jobs:
docker:
strategy:
matrix:
arch: ["ubuntu-latest"]
git-version: ["2.38.4"]
runs-on: ${{ matrix.arch }}
steps:
- name: checkout
uses: actions/checkout@v2
with:
submodules: recursive
# bob
- name: Set up SSH keys
run: |
mkdir -p ~/.ssh
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan -t rsa git.fascinated.cc >> ~/.ssh/known_hosts
- name: Download docker
run: |
wget -q -O /tmp/docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-20.10.23.tgz \
&& tar --extract --file /tmp/docker.tgz --directory /usr/bin --strip-components 1 --no-same-owner docker/docker \
&& rm -rf /tmp/*
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Repo
uses: docker/login-action@v2
with:
registry: git.fascinated.cc
username: ${{ secrets.REPO_USERNAME }}
password: ${{ secrets.REPO_TOKEN }}
- name: Build and push (Node 18.x)
uses: docker/build-push-action@v4
with:
push: true
context: ./gitea-runner
file: ./gitea-runner/Node18xDockerfile
tags: git.fascinated.cc/fascinated/gitea-runner:node-18
- name: Build and push (Nginx PHP)
uses: docker/build-push-action@v4
with:
push: true
context: ./gitea-runner
file: ./gitea-runner/NginxPHPDockerfile
tags: git.fascinated.cc/fascinated/nginx-php:latest