bylaws/.gitea/workflows/release.yaml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 27: cannot unmarshal !!seq into string

29 lines
609 B
YAML

name: release
on:
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: setup go
uses: https://github.com/actions/setup-go@v4
with:
go-version: '>=1.20.1'
- name: release-build
uses: git.axpdsp.org/parliamentarian/bylaw-builder
run: make
- name: Use Go Action
id: use-go-action
uses: actions/release-action@main
with:
files:
- bylaws.pdf
api_key: '${{secrets.RELEASE_TOKEN}}'