chore: Rebase container build/push action
This commit is contained in:
parent
21d28e5600
commit
791110a59f
@ -38,14 +38,32 @@ jobs:
|
|||||||
# echo "version=$(cat .version)" >> $GITHUB_OUTPUT
|
# echo "version=$(cat .version)" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
Container image (docker.io):
|
Container image (docker.io):
|
||||||
|
container: catthehacker/ubuntu:act-latest
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Kaniko build
|
- name: Checkout
|
||||||
uses: aevea/action-kaniko@master
|
uses: actions/checkout@v4
|
||||||
|
# - name: Create Kubeconfig
|
||||||
|
# run: |
|
||||||
|
# mkdir $HOME/.kube
|
||||||
|
# echo "${{ secrets.KUBECONFIG_BUILDX }}" > $HOME/.kube/config
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
with:
|
with:
|
||||||
image: djpbessems/spamasaurusrex
|
driver: kubernetes
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
driver-opts: |
|
||||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
namespace=act-runner
|
||||||
tag: ${{ steps.sem_rel.outputs.version }}
|
qemu.install=true
|
||||||
tag_with_latest: true
|
- name: Login to Docker Registry
|
||||||
debug: true
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: code.spamasaurus.com
|
||||||
|
username: ${{ secrets.GIT_USERNAME }}
|
||||||
|
password: ${{ secrets.GIT_APIKEY }}
|
||||||
|
- name: Build and push
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
tags: |
|
||||||
|
code.spamasaurus.com/djpbessems/spamasaurusrex:${{ steps.sem_rel.outputs.version }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user