updated actions
This commit is contained in:
parent
c75d4fd5af
commit
08db5a57e2
2
.github/workflows/docker.yml
vendored
2
.github/workflows/docker.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Build, Tag, Push Docker Image
|
name: Docker Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
@ -1,11 +1,15 @@
|
||||||
name: Create Release
|
name: GitHub Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags: [ v* ]
|
tags: [ v* ]
|
||||||
|
workflow_run:
|
||||||
|
workflows: ["Docker Release"]
|
||||||
|
types: [completed]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
|
|
Loading…
Reference in a new issue