Release #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
workflow_dispatch: | |
inputs: | |
commit: | |
description: "Commit (e.g., 52f0348)" | |
default: "master" | |
env: | |
COREDNS_VERSION: v1.11.1 | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout coredns | |
uses: actions/checkout@v4 | |
with: | |
repository: coredns/coredns | |
ref: ${{ env.COREDNS_VERSION }} | |
- name: Set up info | |
run: | | |
set -x -e | |
VERSION=$(make -f Makefile.release version) | |
COMMIT=$(git rev-parse --quiet --verify ${{ github.event.inputs.commit }}) | |
echo "commit=${COMMIT}" >> $GITHUB_OUTPUT | |
echo "version=${VERSION}" >> $GITHUB_OUTPUT | |
id: info | |
- name: Build release binary | |
run: | | |
sed -i 's/^cache:cache/k8s_cache:github.com\/delta10\/k8s_cache/' plugin.cfg | |
make -f Makefile.release release | |
- name: Build release binary sha256 | |
run: (cd release; for asset in `ls -A *tgz`; do sha256sum $asset > $asset.sha256; done) | |
- name: Remove hidden section | |
run: sed '/+++/,//d' notes/coredns-${{ steps.info.outputs.version}}.md > release.md | |
- name: Log release info | |
run: | | |
set -x -e | |
git log -1 | |
echo ${{ steps.info.outputs.commit }} | |
echo ${{ steps.info.outputs.version }} | |
cat release.md | |
sha256sum release/*.tgz | |
- name: Draft release | |
uses: softprops/action-gh-release@v1 | |
with: | |
body_path: release.md | |
name: v${{ steps.info.outputs.version }} | |
tag_name: v${{ steps.info.outputs.version }} | |
target_commitish: ${{ steps.info.outputs.commit }} | |
files: | | |
release/*.tgz | |
release/*.tgz.sha256 | |
draft: true |