runner-images/.gitea/workflows/builder.yaml

34 lines
1.0 KiB
YAML
Raw Normal View History

2023-08-05 12:37:39 +00:00
name: Image builder
on:
release:
types: [released]
push:
jobs:
build:
2023-08-05 18:55:45 +00:00
container:
2023-08-05 20:04:28 +00:00
image: git.halis.io/athens-school/runner-images:debian12.1-node18
2023-08-05 18:55:45 +00:00
runs-on: [arm64]
2023-08-05 12:37:39 +00:00
steps:
2023-08-05 20:04:28 +00:00
- name: Checkout repository
uses: actions/checkout@v3
2023-08-05 23:41:02 +00:00
- name: Generate tag
id: tag_vars
run: echo "IMAGE_NAME=$(echo $GITHUB_SERVER_URL/$GITHUB_REPOSITORY | tr '[:upper:]' '[:lower:]' | cut -d '/' -f3-)" >> $GITHUB_OUTPUT
2023-08-05 20:16:19 +00:00
- name: Login to register
uses: https://gitea.com/docker/login-action@v2
with:
2023-08-05 23:47:08 +00:00
registry: no-a-registry.io
2023-08-05 20:16:19 +00:00
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
2023-08-05 20:26:06 +00:00
- name: Build and push
2023-08-05 23:33:06 +00:00
uses: https://github.com/docker/build-push-action@v4
2023-08-05 23:34:15 +00:00
with:
push: true
context: images/debian
file: images/debian/Dockerfile.12.1-node18
2023-08-05 23:42:31 +00:00
tags: git.halis.io/athens-school/runner-images:debian12.1-node18
2023-08-05 23:34:15 +00:00
#tags: git.halis.io/athens-school/runner-images:debian12.1-node18
2023-08-05 20:16:19 +00:00