runner-images/.gitea/workflows/csharp.yml

35 lines
1.1 KiB
YAML
Raw Normal View History

2024-05-09 21:07:12 +00:00
name: Build Runner csharp
2024-05-09 20:03:49 +00:00
on:
2024-05-09 21:01:59 +00:00
branches:
- 'master'
2024-05-09 21:04:37 +00:00
jobs:
2024-05-09 20:03:49 +00:00
build_csharp:
runs-on: 'priviliged'
strategy:
matrix:
version: [6, 7]
steps:
- name: Install Docker
run: |
rm $(which docker) && curl -fsSL https://get.docker.com | sh
- name: Set up QEMU
uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3'
- name: Setup Buildx
uses: 'https://git.euph.dev/actions/docker-setup-buildx@v3'
- name: Login to Registry
uses: 'https://git.euph.dev/actions/docker-login@v3'
with:
registry: git.euph.dev
username: ${{ secrets.DEPLOY_USER }}
password: ${{ secrets.DEPLOY_SECRET }}
2024-05-09 21:07:12 +00:00
- name: Build and push csharp image
2024-05-09 20:03:49 +00:00
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
with:
2024-05-09 21:07:12 +00:00
context: "{{defaultContext}}:images/actions/csharp"
2024-05-09 20:03:49 +00:00
push: true
build-args: PACKAGE_VERSION=${{ matrix.version }}
tags: |
2024-05-09 21:07:12 +00:00
git.euph.dev/actions/runner-csharp-${{ matrix.version }}:latest
git.euph.dev/actions/runner-csharp-${{ matrix.version }}:${{ gitea.run_number }}