mirror of
https://git.suyu.dev/suyu/build-environments
synced 2024-11-21 06:26:04 -07:00
test123
This commit is contained in:
parent
4eae6a7678
commit
07e781c2ca
2 changed files with 36 additions and 0 deletions
36
.forgejo/workflows/ci.yml
Normal file
36
.forgejo/workflows/ci.yml
Normal file
|
@ -0,0 +1,36 @@
|
|||
name: 'Suyu Docker Image CI'
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs: {}
|
||||
schedule:
|
||||
- cron: '0 7 * * 0'
|
||||
push:
|
||||
branches: ["dev"]
|
||||
pull_request:
|
||||
branches: ["dev"]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
# image: ["linux-clang-format", "linux-fresh", "linux-mingw", "linux-transifex"]
|
||||
image: ["linux-clang-format", "linux-fresh", "linux-mingw"]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: docker/setup-buildx-action@v1
|
||||
name: Setup Docker BuildX system
|
||||
- name: Login to the Suyu Package Registry
|
||||
uses: docker/login-action@v1
|
||||
if: (github.ref == 'refs/heads/dev') && (github.repository == 'suyu/build-environments')
|
||||
with:
|
||||
registry: git.suyu.dev
|
||||
username: ${{ secrets.FORGEJO_USERNAME }}
|
||||
password: ${{ secrets.FORGEJO_TOKEN }}
|
||||
- uses: docker/build-push-action@v2
|
||||
name: Build image
|
||||
with:
|
||||
push: ${{ (github.ref == 'refs/heads/dev') && (github.repository == 'suyu/build-environments') }}
|
||||
context: ${{ matrix.image }}
|
||||
tags: suyu/build-environments:${{ matrix.image }}
|
Loading…
Reference in a new issue