Compare commits

..
6 Commits
Author SHA1 Message Date
brb 5709c7152a updated to only run when tag is provided to release branch
pipeline / Test (push) Successful in 52s
Docker / Test (push) Successful in 38s
Docker / Publish (push) Failing after 6s
2023-07-11 18:41:05 +02:00
brb a8b27d8f21 ignored pushes to release branch without tag
pipeline / Test (push) Successful in 39s
2023-07-11 18:33:15 +02:00
brb 2cd449e130 renamed workflow file
Docker / Publish (push) Failing after 6s
Docker / Test (push) Successful in 39s
2023-07-11 18:24:06 +02:00
brb 91b22a781c renamed workflow file 2023-07-11 18:23:37 +02:00
brb 6f7201054b ignored branch release 2023-07-11 18:22:23 +02:00
brb 697973a454 added automatic detection of version number
Docker / Test (push) Successful in 41s
Docker / Publish (push) Failing after 5s
pipeline / Test (push) Successful in 39s
2023-07-11 18:11:52 +02:00
2 changed files with 6 additions and 3 deletions
@@ -1,7 +1,10 @@
name: pipeline
run-name: ${{ gitea.actor }} is running script
runs-on: ubuntu-latest
on: [push]
on:
push:
branches-ignore:
- "release"
image: python:3.10
jobs:
test:
@@ -4,7 +4,7 @@ runs-on: ubuntu-latest
on:
push:
branches: [release]
tags: ['v*']
tags: [v*]
jobs:
test:
name: Test
@@ -37,4 +37,4 @@ jobs:
with:
context: .
push: true
tags: 192.168.1.2:5000/${{gitea.repository}}:v1.1
tags: 192.168.1.2:5000/${{gitea.repository}}:${{gitea.ref_name}}