Add build workflow
This commit is contained in:
parent
69651f259d
commit
97391adef6
2 changed files with 18 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
.forgejo/
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.idea
|
.idea
|
||||||
*.log
|
*.log
|
||||||
|
|
17
.forgejo/workflows/build.yaml
Normal file
17
.forgejo/workflows/build.yaml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
steps:
|
||||||
|
- uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: git.phoenixinquis.net
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.packaging_password }}
|
||||||
|
- uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
tags: git.phoenixinquis.net/correlr/sharkey-prometheus-queues:latest
|
Loading…
Reference in a new issue