Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Commit

Permalink
💚 Diagnosing manual ZeroDNS releases
Browse files Browse the repository at this point in the history
  • Loading branch information
ionlights committed Dec 31, 2020
1 parent 780f1a5 commit 62e200f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Push
name: Compile Release into Container

on:
release:
Expand All @@ -17,7 +17,7 @@ jobs:
echo "::set-output name=tag::$(basename ${{ github.ref }})"
echo "::set-output name=date::$(date)"
pip3 install -r ./scripts/requirements.txt -q --no-input
./scripts/version-bump
./scripts/version-bump $(basename ${{ github.ref }})
- id: login-dockerhub-registry
name: "Login to DockerHub Registry"
uses: docker/login-action@v1
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Version Bump
name: Bump CoreDNS Version in Release

on:
schedule:
Expand All @@ -11,19 +11,19 @@ jobs:
- id: checkout
name: "Checkout"
uses: actions/checkout@v2
- id: bump
- id: meta
name: "Version Bump"
run: |
pip3 install -r ./scripts/requirements.txt -q --no-input
./scripts/version-bump
- id: release
if: steps.bump.outputs.createRelease == 'true'
if: steps.meta.outputs.createRelease == 'true'
name: "Create Release"
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.bump.outputs.vZeroDNS }}
release_name: "Upgrade to CoreDNS: ${{ steps.bump.outputs.vCoreDNS }}"
body: ${{ steps.bump.outputs.body }}
tag_name: ${{ steps.meta.outputs.vZeroDNS }}
release_name: "Upgrade to CoreDNS: ${{ steps.meta.outputs.vCoreDNS }}"
body: ${{ steps.meta.outputs.body }}
prerelease: true

0 comments on commit 62e200f

Please sign in to comment.