This commit is contained in:
parent
c3c2aa813d
commit
4dd980586f
1 changed files with 6 additions and 3 deletions
9
.github/workflows/build.yml
vendored
9
.github/workflows/build.yml
vendored
|
|
@ -5,7 +5,7 @@ on:
|
|||
branches: [ main ]
|
||||
workflow_dispatch: {}
|
||||
schedule:
|
||||
- cron: '0 4 * * *'
|
||||
- cron: '0 23 * * *'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
@ -17,8 +17,11 @@ jobs:
|
|||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Log in to registry
|
||||
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login gitea.ceperka.net -u ${{ github.actor }} --password-stdin
|
||||
|
||||
run: echo "${{ env.FORGEJO_TOKEN }}" | docker login gitea.ceperka.net -u ${{ env.FORGEJO_ACTOR }} --password-stdin
|
||||
|
||||
- name: Download latest upstream image
|
||||
run: docker pull quay.io/fedora/fedora-coreos:testing
|
||||
|
||||
- name: Build
|
||||
run: docker build -t $IMAGE:$TAG .
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue