Fix indenting
All checks were successful
Build Custom rust-tauri image / build-container (push) Successful in 11m56s
All checks were successful
Build Custom rust-tauri image / build-container (push) Successful in 11m56s
This commit is contained in:
parent
2fcdb00890
commit
d08c3fafee
1 changed files with 27 additions and 26 deletions
|
@ -2,30 +2,31 @@ name: 'Build Custom rust-tauri image'
|
||||||
author: 'Neshura'
|
author: 'Neshura'
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 0 * * 1'
|
- cron: '0 0 * * 1'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-container:
|
build-container:
|
||||||
runs-on: dind
|
runs-on: dind
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Set up Docker Buildx
|
name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
with:
|
with:
|
||||||
config-inline: |
|
config-inline: |
|
||||||
[registry."docker.io"]
|
[registry."docker.io"]
|
||||||
mirrors = ["https://docker-cache.neshweb.net"]
|
mirrors = ["https://docker-cache.neshweb.net"]
|
||||||
-
|
-
|
||||||
name: Login to Forgejo Docker Repo
|
name: Login to Forgejo Docker Repo
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: forgejo.neshweb.net
|
registry: forgejo.neshweb.net
|
||||||
username: ${{ secrets.FORGEJO_USERNAME }}
|
username: ${{ secrets.FORGEJO_USERNAME }}
|
||||||
password: ${{ secrets.FORGEJO_TOKEN }}
|
password: ${{ secrets.FORGEJO_TOKEN }}
|
||||||
-
|
-
|
||||||
name: Push to Package Registry
|
name: Push to Package Registry
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
push: true
|
push: true
|
||||||
tags: forgejo.neshweb.net/ci-docker-images/rust-tauri:latest
|
tags: forgejo.neshweb.net/ci-docker-images/rust-tauri:latest
|
Loading…
Reference in a new issue