This commit is contained in:
parent
c7972c1ed0
commit
3adce5a0a5
5 changed files with 98 additions and 0 deletions
37
.github/workflows/dotnet.yaml
vendored
Normal file
37
.github/workflows/dotnet.yaml
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
name: build dotnet
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: "0 0 * * 1"
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- dotnet/**
|
||||
jobs:
|
||||
push:
|
||||
name: "yolks:dotnet_${{ matrix.tag }}"
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
tag:
|
||||
- 9
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
buildkitd-flags: --debug
|
||||
- uses: docker/login-action@v3
|
||||
with:
|
||||
registry: git.styandco.dev
|
||||
username: ${{ github.repository_owner }}
|
||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||
- uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: ./dotnet
|
||||
file: ./dotnet/${{ matrix.tag }}/Dockerfile
|
||||
platforms: linux/amd64
|
||||
push: true
|
||||
tags: |
|
||||
git.styandco.dev/lara-eggs/yolks:dotnet_${{ matrix.tag }}
|
Loading…
Add table
Add a link
Reference in a new issue