generated from Templates/Baseline
setup basic action based ci #3
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:
|
||||
push:
|
||||
branches: none #[ main ]
|
||||
#paths: .github/workflows/1-actions-ci-cd-aks.yml
|
||||
#branches: none #[ main ]
|
||||
pull_request:
|
||||
branches: none # [ main ]
|
||||
#branches: none # [ main ]
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build-container:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: catthehacker/ubuntu:act-latest
|
||||
steps:
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v2
|
||||
#-
|
||||
# name: Set up QEMU
|
||||
# uses: actions/setup-qemu-action@v2
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
uses: actions/setup-buildx-action@v2
|
||||
-
|
||||
name: Login to Gitea Package Registry
|
||||
uses: docker/login-action@v2
|
||||
uses: actions/login-action@v2
|
||||
with:
|
||||
registry: gitea.ocram85.com
|
||||
username: ${{ secrets.GITEA_USERNAME }}
|
||||
password: ${{ secrets.GITEA_TOKEN }}
|
||||
username: ${{ secrets.USERNAME }}
|
||||
#password: ${{ secrets.PASSWORD }}
|
||||
password: ${{ secrets.TOKEN }}
|
||||
-
|
||||
name: Build and push
|
||||
uses: docker/build-push-action@v4
|
||||
uses: actions/build-push-action@v4
|
||||
with:
|
||||
push: false #true
|
||||
tags: gitea.ocram85.com/ocram85/swarmproxy:next
|
||||
push: false
|
||||
tags: gitea.ocram85.com/ocram85/swarmproxy:next2
|
||||
|
Loading…
Reference in New Issue
Block a user