feat(oci): move to Containerfile
All checks were successful
/ build (pull_request) Successful in 3m28s

This commit is contained in:
Varakh 2024-05-03 09:06:39 +02:00
parent 19c367a5d8
commit dabc4343ec
3 changed files with 8 additions and 1 deletions

View file

@ -7,6 +7,7 @@ on:
env:
IMAGE_TAG: varakh/upda
REVISION: ${{ github.sha }}
FORGEJO_FQDN: git.myservermanager.com
jobs:
build:
runs-on: docker
@ -20,7 +21,7 @@ jobs:
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker.gpg] https://download.docker.com/linux/debian bookworm stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin
apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin podman
- name: Set up node
uses: actions/setup-node@v4
with:
@ -39,6 +40,9 @@ jobs:
- name: Test docker image build
uses: docker/build-push-action@v4
with:
file: ./Containerfile
context: .
no-cache: true
push: false
tags: |
${{ env.IMAGE_TAG }}:${{ github.sha }}

View file

@ -68,6 +68,9 @@ jobs:
- name: Upload artifacts
uses: actions/forgejo-release@v1
with:
file: ./Containerfile
context: .
no-cache: true
url: ${{ env.FORGEJO_URL }}
repo: ${{ env.FORGEJO_REPO }}
token: ${{ secrets.FORGEJO_TOKEN }}