Frank Villaro-Dixon
ff0227380f
Some checks failed
build-container-image / docker (push) Failing after 19s
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
34 lines
838 B
YAML
34 lines
838 B
YAML
name: build-container-image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
steps:
|
|
- name: Install dependencies
|
|
run: |
|
|
env
|
|
echo actor: ${{ github.actor }}
|
|
echo token: ${{ github.token }}
|
|
echo secrets_token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: forge.k3s.fr
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: forge.k3s.fr/pocs/test-docker-build:latest
|