chore: Use Gitea Actions for CI.
release / release (push) Has been cancelled
Details
release / release (push) Has been cancelled
Details
This commit is contained in:
parent
9cedc7dbcb
commit
40bc4f2d49
23
.drone.yml
23
.drone.yml
|
|
@ -1,23 +0,0 @@
|
|||
kind: pipeline
|
||||
name: ccr
|
||||
type: docker
|
||||
|
||||
steps:
|
||||
- name: generate-pdf
|
||||
image: git.axpdsp.org/parliamentarian/bylaw-builder
|
||||
commands:
|
||||
- "make"
|
||||
- "echo $DRONE_TAG > title"
|
||||
- name: publish
|
||||
image: plugins/gitea-release
|
||||
settings:
|
||||
base_url: https://git.axpdsp.org
|
||||
api_key:
|
||||
from_secret: api_key
|
||||
files:
|
||||
- bylaws.pdf
|
||||
title: title
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- tag
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
name: release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
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: Install packages
|
||||
uses: awalsh128/cache-apt-pkgs-action@latest
|
||||
with:
|
||||
packages: emacs texlive-full git make
|
||||
version: 1.0
|
||||
- name: Build
|
||||
run: make
|
||||
- name: Release
|
||||
id: use-go-action
|
||||
uses: https://gitea.com/actions/release-action@main
|
||||
with:
|
||||
files: |-
|
||||
bylaws.pdf
|
||||
api_key: '${{secrets.RELEASE_TOKEN}}'
|
||||
Loading…
Reference in New Issue