Merge branch 'master' into tini
This commit is contained in:
39
.github/workflows/bun.yml
vendored
Normal file
39
.github/workflows/bun.yml
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
name: build bun
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: "0 0 * * 1"
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- bun/**
|
||||
jobs:
|
||||
push:
|
||||
name: "yolks:bun_${{ matrix.tag }}"
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
tag:
|
||||
- latest
|
||||
- canary
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: docker/setup-qemu-action@v2
|
||||
- uses: docker/setup-buildx-action@v2
|
||||
with:
|
||||
buildkitd-flags: --debug
|
||||
- uses: docker/login-action@v2
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.repository_owner }}
|
||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||
- uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: ./bun
|
||||
file: ./bun/${{ matrix.tag }}/Dockerfile
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: true
|
||||
tags: |
|
||||
ghcr.io/parkervcp/yolks:bun_${{ matrix.tag }}
|
3
.github/workflows/installers.yml
vendored
3
.github/workflows/installers.yml
vendored
@@ -21,6 +21,7 @@ jobs:
|
||||
- ubuntu
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: docker/setup-qemu-action@v2
|
||||
- uses: docker/setup-buildx-action@v2
|
||||
with:
|
||||
buildkitd-flags: --debug
|
||||
@@ -33,7 +34,7 @@ jobs:
|
||||
with:
|
||||
context: ./installers
|
||||
file: ./installers/${{ matrix.tag }}/Dockerfile
|
||||
platforms: linux/amd64
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: true
|
||||
tags: |
|
||||
ghcr.io/parkervcp/installers:${{ matrix.tag }}
|
||||
|
1
.github/workflows/wine.yml
vendored
1
.github/workflows/wine.yml
vendored
@@ -17,6 +17,7 @@ jobs:
|
||||
matrix:
|
||||
tag:
|
||||
- latest
|
||||
- devel
|
||||
- staging
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
Reference in New Issue
Block a user