Added Forgejo workflows

pull/1/head
Gertjan Krol 2023-11-07 21:04:19 +01:00
parent e80c9abd83
commit 6e8dbb5633
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,26 @@
name: Release
on:
push:
tags:
- '*'
jobs:
build_push:
runs-on: ubuntu-latest
container: git.gertjankrol.nl/docker/toolkit:latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Docker login
uses: actions/docker-login@v2
with:
registry: ${{secrets.DOCKER_REGISTRY}}
username: ${{secrets.DOCKER_USERNAME}}
password: ${{secrets.DOCKER_PASSWORD}}
- name: Build and push Unbound image
uses: actions/docker-build-push@v4
with:
tags: |
${{secrets.DOCKER_REGISTRY}}/${{github.repository}}:${{github.ref_name}}
${{secrets.DOCKER_REGISTRY}}/${{github.repository}}:latest
push: true

View File

@ -0,0 +1,20 @@
name: Test
on:
push:
branches:
- '*'
jobs:
test_build:
runs-on: ubuntu-latest
container: git.gertjankrol.nl/docker/toolkit:latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Build Unbound image
uses: actions/docker-build-push@v4
with:
tags: unbound-test:${{github.ref_name}}
push: false
- name: Unbound image details
run: docker image inspect unbound-test:${{github.ref_name}}