Skip to content

Rename artifact name #5

Rename artifact name

Rename artifact name #5

Workflow file for this run

name: Release
on:
push:
branches:
- main
tags:
- act*
jobs:
build:
env:
OUT_DIR: ${{ github.workspace }}/_OUTPUT
runs-on: ubuntu-22.04
steps:
- name: Checkoug
uses: actions/checkout@v4
- name: Setup Go toolchain
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Make
run: |
make build.linux
make build.macos
- name: Upload Artefact
uses: actions/upload-artifact@v3
with:
if-no-files-found: error
name: release_files
path: ${{ env.OUT_DIR }}