Skip to content

feature(main): check endpoint /v2/ (#4) #7

feature(main): check endpoint /v2/ (#4)

feature(main): check endpoint /v2/ (#4) #7

Workflow file for this run

name: Release
on:
push:
branches-ignore:
- '**'
tags:
- '*'
jobs:
goreleaser:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.20.x
- name: Install Dependencies
run: |
sudo apt update && sudo apt install -y gcc-aarch64-linux-gnu \
libbtrfs-dev libgpgme-dev libdevmapper-dev \
qemu-user-static binfmt-support
- name: Set up Go
uses: actions/setup-go@master
with:
go-version: 1.20.x
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
args: release --timeout=1h --debug
env:
GITHUB_TOKEN: ${{ secrets.GH_RELEASE_PAT }}