release #790
Workflow file for this run
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 | |
defaults: | |
run: | |
shell: bash | |
on: | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: git fetch --prune --unshallow | |
- uses: c-py/action-dotenv-to-setenv@v3 | |
with: | |
env-file: .env | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: "${{ env.GOLANG_VERSION }}" | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Set release version into env variable | |
run: echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | |
- name: Login to GHCR | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Make and publish | |
run: | | |
sudo rm -rf dist | |
make release | |
env: | |
GORELEASER_RELEASE: true | |
GORELEASER_MOUNT_CONFIG: true | |
# using PAT as homebrew is located in different repo | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
test-network-upgrade-on-release: | |
runs-on: upgrade-tester | |
needs: | |
- publish | |
steps: | |
- uses: actions/checkout@v3 | |
- run: git fetch --prune --unshallow | |
- name: set environment | |
uses: HatsuneMiku3939/direnv-action@v1 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: "${{ env.GOLANG_VERSION }}" | |
- name: detect release tag | |
run: echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | |
- name: configure variables | |
run: | | |
test_required=$(./script/upgrades.sh test-required ${{ env.RELEASE_TAG }}) | |
echo "TEST_REQUIRED=$test_required" >> $GITHUB_ENV | |
- name: run test | |
if: env.TEST_REQUIRED == 'true' | |
env: | |
UPGRADE_BINARY_VERSION: ${{ env.RELEASE_TAG }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
cd tests/upgrade | |
make test | |
- name: dump stderr | |
if: always() && steps.test.outcome != 'skipped' | |
run: cat .cache/run/upgrade/stderr.log | |
- name: upload stderr | |
if: always() && steps.test.outcome != 'skipped' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: stderr.log | |
path: .cache/run/upgrade/stderr.log | |
- name: upload stdout | |
if: always() && steps.test.outcome != 'skipped' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: stdout.log | |
path: .cache/run/upgrade/stdout.log | |
notify-homebrew: | |
runs-on: ubuntu-latest | |
needs: | |
- publish | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: release version | |
run: echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | |
- name: check if pre-release | |
id: check | |
run: | | |
is_prerelease=$(./script/is_prerelease.sh ${{ env.RELEASE_TAG }}; echo $?) | |
is_mainnet=$(./script/mainnet-from-tag.sh ${{ env.RELEASE_TAG }}; echo $?) | |
echo "is_prerelease=${is_prerelease}" >> $GITHUB_OUTPUT | |
echo "is_mainnet=${is_mainnet}" >> $GITHUB_OUTPUT | |
- name: notify homebrew with a new release | |
if: contains(steps.check.outputs.is_mainnet, '0') && contains(steps.check.outputs.is_prerelease, '1') | |
uses: benc-uk/workflow-dispatch@v1 | |
with: | |
token: ${{ secrets.GORELEASER_ACCESS_TOKEN }} | |
repo: akash-network/homebrew-tap | |
ref: refs/heads/main | |
workflow: akash | |
inputs: '{"tag": "${{ env.RELEASE_TAG }}"}' |