Reworked receiver handler and autorelease #7
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: Portage Auto release linux | ||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version : '1.22' | ||
- name: Build portage | ||
run: go build -o portage main.go | ||
release: | ||
steps: | ||
- name: Package for release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: {{ secrets.GITHUB_TOKEN }} | ||
Check failure on line 23 in .github/workflows/auto_release.yml GitHub Actions / Portage Auto release linuxInvalid workflow file
Check failure on line 23 in .github/workflows/auto_release.yml GitHub Actions / Portage Auto release linuxInvalid workflow file
|
||
tag: ${{ github.ref }} | ||
file: .portage | ||
file_glob: true |