4 Commits

Author SHA1 Message Date
ad1cb70cdc Update .gitea/workflows/deploy.yml
All checks were successful
Build / build (push) Successful in 1m35s
Deploy / build (push) Successful in 2m7s
2026-02-14 19:08:58 +01:00
ce01b7ad14 Update .gitea/workflows/deploy.yml
Some checks failed
Build / build (push) Has been cancelled
2026-02-14 19:08:32 +01:00
02c7b966eb Update .gitea/workflows/build.yml
Some checks failed
Build / build (push) Has been cancelled
2026-02-14 19:08:22 +01:00
a3d9e1ebb9 Update .gitea/workflows/deploy.yml
Some checks failed
Build / build (push) Has been cancelled
2026-02-14 19:08:14 +01:00
2 changed files with 8 additions and 7 deletions

View File

@@ -5,7 +5,7 @@ on:
- '*'
jobs:
build:
runs-on: standard-latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

View File

@@ -1,11 +1,12 @@
name: Deploy
on:
push:
tags:
- 'v*'
branches:
- master
jobs:
build:
runs-on: standard-latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
@@ -18,10 +19,10 @@ jobs:
cache: 'gradle'
- name: Build Jar
run: ./gradlew bootJar
run: ./gradlew bootJar --no-daemon
- name: Build Container
run: docker build --tag gitea.seeseepuff.be/seeseemelk/pcinv:${{github.ref_name}} .
run: docker build --tag gitea.seeseepuff.be/seeseemelk/pcinv:latest .
- name: Login
with: # Set the secret as an input
@@ -29,4 +30,4 @@ jobs:
run: docker login gitea.seeseepuff.be -u seeseemelk -p ${{ secrets.PACKAGE_RW }}
- name: Push Container
run: docker push gitea.seeseepuff.be/seeseemelk/pcinv:${{github.ref_name}}
run: docker push gitea.seeseepuff.be/seeseemelk/pcinv:latest