generated from Templates/Baseline
setup basic action based ci (#3)
Some checks failed
docker / build-container (push) Failing after 1s
Some checks failed
docker / build-container (push) Failing after 1s
#### 📖 Summary testing semver #### 📑 Test Plan > 💡 Select your test plan for the code changes. - [x] CI pipeline tests - [ ] Custom test - [ ] No test plan ##### Details / Justification <!-- Add your test details or justification for missing tests here. --> #### 📚 Additional Notes <!-- A place for additional detail notes. --> Co-authored-by: OCram85 <marco.blessing@googlemail.com> Reviewed-on: #3
This commit is contained in:
parent
be6185e4fb
commit
5785f1af82
51
.gitea/workflows/deploy.yaml
Normal file
51
.gitea/workflows/deploy.yaml
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
name: docker
|
||||||
|
|
||||||
|
run-name: Container Image Deployment
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'master'
|
||||||
|
tags:
|
||||||
|
- 'v*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-container:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: catthehacker/ubuntu:act-latest
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Docker meta
|
||||||
|
id: meta
|
||||||
|
uses: docker/metadata-action@v4
|
||||||
|
with:
|
||||||
|
images: |
|
||||||
|
ocram85/swarmproxy
|
||||||
|
tags: |
|
||||||
|
type=semver,pattern={{version}}
|
||||||
|
type=semver,pattern={{major}}.{{minor}}
|
||||||
|
-
|
||||||
|
name: Set up QEMU
|
||||||
|
uses: actions/setup-qemu-action@v2
|
||||||
|
-
|
||||||
|
name: Set up Docker Buildx
|
||||||
|
uses: actions/setup-buildx-action@v2
|
||||||
|
-
|
||||||
|
name: Login to Gitea Package Registry
|
||||||
|
uses: actions/login-action@v2
|
||||||
|
with:
|
||||||
|
registry: gitea.ocram85.com
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
#password: ${{ secrets.PASSWORD }}
|
||||||
|
password: ${{ secrets.TOKEN }}
|
||||||
|
-
|
||||||
|
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 }}
|
||||||
|
#tags: gitea.ocram85.com/ocram85/swarmproxy:next2
|
||||||
|
|
@ -4,33 +4,35 @@ run-name: ${{ gitea.actor }} testing docker builder
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: none #[ main ]
|
#branches: none #[ main ]
|
||||||
#paths: .github/workflows/1-actions-ci-cd-aks.yml
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: none # [ main ]
|
#branches: none # [ main ]
|
||||||
# Allows you to run this workflow manually from the Actions tab
|
# Allows you to run this workflow manually from the Actions tab
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-container:
|
build-container:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: catthehacker/ubuntu:act-latest
|
||||||
steps:
|
steps:
|
||||||
-
|
#-
|
||||||
name: Set up QEMU
|
# name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v2
|
# uses: actions/setup-qemu-action@v2
|
||||||
-
|
-
|
||||||
name: Set up Docker Buildx
|
name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v2
|
uses: actions/setup-buildx-action@v2
|
||||||
-
|
-
|
||||||
name: Login to Gitea Package Registry
|
name: Login to Gitea Package Registry
|
||||||
uses: docker/login-action@v2
|
uses: actions/login-action@v2
|
||||||
with:
|
with:
|
||||||
registry: gitea.ocram85.com
|
registry: gitea.ocram85.com
|
||||||
username: ${{ secrets.GITEA_USERNAME }}
|
username: ${{ secrets.USERNAME }}
|
||||||
password: ${{ secrets.GITEA_TOKEN }}
|
#password: ${{ secrets.PASSWORD }}
|
||||||
|
password: ${{ secrets.TOKEN }}
|
||||||
-
|
-
|
||||||
name: Build and push
|
name: Build and push
|
||||||
uses: docker/build-push-action@v4
|
uses: actions/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
push: false #true
|
push: false
|
||||||
tags: gitea.ocram85.com/ocram85/swarmproxy:next
|
tags: gitea.ocram85.com/ocram85/swarmproxy:next2
|
||||||
|
Loading…
Reference in New Issue
Block a user