Skip to content

Update packages-rc.yml #17

Update packages-rc.yml

Update packages-rc.yml #17

Workflow file for this run

name: Build Rarimo Core executables
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+'
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Check branch
if: endsWith(github.event.base_ref, 'mainnet-beta') == false
run: |
echo ${{ github.event.base_ref }}
echo ${{github.ref}}
exit -1
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
- name: Build base
run: |
apk add build-base
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean --config ./.goreleaser.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}