Compare commits
No commits in common. "9112ec6f5de47affb58d94aef7034bce373e6e87" and "e80c9abd8332f4909ab7008e22c200e5fc9f0ff2" have entirely different histories.
9112ec6f5d
...
e80c9abd83
|
@ -1,26 +0,0 @@
|
||||||
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
|
|
|
@ -1,20 +0,0 @@
|
||||||
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}}
|
|
Loading…
Reference in New Issue