Compare commits

..

8 Commits

Author SHA1 Message Date
ab8c87974d Add renovate.json
All checks were successful
ci / test-build (pull_request) Successful in 14s
2023-07-10 16:00:21 +00:00
32faa37575 fix syntax 2023-07-10 14:05:37 +02:00
80447c3901 simplify ci 2023-07-10 14:04:21 +02:00
2013e22524 update meta fields
All checks were successful
ci / deployment-job (push) Successful in 30s
docker test build / test-build (push) Successful in 25s
2023-07-10 13:51:02 +02:00
4f1626d5e8 debug
All checks were successful
docker / test-build (push) Successful in 26s
docker / deployment-build (push) Successful in 25s
2023-07-10 13:45:18 +02:00
61b786bb20 fix mirror name
Some checks failed
docker / test-build (push) Successful in 19s
docker / deployment-build (push) Failing after 12s
2023-07-10 13:41:38 +02:00
4ca74a74da debug
Some checks failed
docker / deployment-build (push) Failing after 24s
docker / test-build (push) Successful in 20s
2023-07-10 13:35:44 +02:00
a52df9d159 test context
All checks were successful
docker / build-container (push) Successful in 17s
2023-07-10 12:01:19 +02:00
3 changed files with 10 additions and 28 deletions

View File

@ -1,17 +1,19 @@
name: docker
name: ci
run-name: ${{ gitea.actor }} testing docker builder
run-name: docker pipeline
on:
push:
#branches: none #[ main ]
tags-ignore:
- '*'
pull_request:
#branches: none # [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-container:
test-build:
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
@ -35,4 +37,4 @@ jobs:
uses: actions/build-push-action@v4
with:
push: false
tags: gitea.ocram85.com/ocram85/swarmproxy:next2
tags: gitea.ocram85.com/ocram85/swarmproxy:next

View File

@ -1,6 +1,6 @@
name: docker
name: deployment
run-name: Container Image Deployment
run-name: tag based container build and push
on:
push:
@ -10,7 +10,7 @@ on:
- 'v*'
jobs:
build-container:
deployment-job:
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
@ -21,7 +21,7 @@ jobs:
uses: actions/metadata-action@v4
with:
images: |
ocram85/swarmproxy
gitea.ocram85.com/ocram85/swarmproxy
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
@ -43,7 +43,6 @@ jobs:
name: Build and push
uses: actions/build-push-action@v4
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

View File

@ -1,19 +0,0 @@
name: build testing
run-name: ${{ gitea.actor }} is testing out Gitea Actions
on:
push:
branches: none #[ main ]
#paths: .github/workflows/1-actions-ci-cd-aks.yml
pull_request:
branches: none # [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-container:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3