feat(oci): move to Containerfile
All checks were successful
/ build (pull_request) Successful in 3m28s
All checks were successful
/ build (pull_request) Successful in 3m28s
This commit is contained in:
parent
19c367a5d8
commit
dabc4343ec
3 changed files with 8 additions and 1 deletions
|
@ -7,6 +7,7 @@ on:
|
||||||
env:
|
env:
|
||||||
IMAGE_TAG: varakh/upda
|
IMAGE_TAG: varakh/upda
|
||||||
REVISION: ${{ github.sha }}
|
REVISION: ${{ github.sha }}
|
||||||
|
FORGEJO_FQDN: git.myservermanager.com
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: docker
|
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
|
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
|
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 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
|
- name: Set up node
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
|
@ -39,6 +40,9 @@ jobs:
|
||||||
- name: Test docker image build
|
- name: Test docker image build
|
||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
|
file: ./Containerfile
|
||||||
|
context: .
|
||||||
|
no-cache: true
|
||||||
push: false
|
push: false
|
||||||
tags: |
|
tags: |
|
||||||
${{ env.IMAGE_TAG }}:${{ github.sha }}
|
${{ env.IMAGE_TAG }}:${{ github.sha }}
|
||||||
|
|
|
@ -68,6 +68,9 @@ jobs:
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
uses: actions/forgejo-release@v1
|
uses: actions/forgejo-release@v1
|
||||||
with:
|
with:
|
||||||
|
file: ./Containerfile
|
||||||
|
context: .
|
||||||
|
no-cache: true
|
||||||
url: ${{ env.FORGEJO_URL }}
|
url: ${{ env.FORGEJO_URL }}
|
||||||
repo: ${{ env.FORGEJO_REPO }}
|
repo: ${{ env.FORGEJO_REPO }}
|
||||||
token: ${{ secrets.FORGEJO_TOKEN }}
|
token: ${{ secrets.FORGEJO_TOKEN }}
|
||||||
|
|
Loading…
Reference in a new issue