Skip to content

Merge tag 'v1.0.0' into release/v1.0.x #6

Merge tag 'v1.0.0' into release/v1.0.x

Merge tag 'v1.0.0' into release/v1.0.x #6

Workflow file for this run

name: Create EmpowerChain release
on:
push:
tags:
- "v*" # Push events to matching v*
jobs:
release:
name: Release
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: earthly/actions-setup@v1
with:
version: 0.6.30
- run: earthly --ci --output +build-static --VERSION=${{ github.ref_name }}
working-directory: ./chain
- run: |
mv empowerd-${{ github.ref_name }}-linux-amd64 empowerd && zip -q empowerd-${{ github.ref_name }}-linux-amd64.zip empowerd && rm empowerd
working-directory: ./chain/build
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: ./chain/build/*