open-goverance/.forgejo/workflows/push.yaml
Brendan Golden d05ec2f214
All checks were successful
On_Push / pdfs (budget) (push) Successful in 13s
On_Push / pdfs (events) (push) Successful in 36s
On_Push / pdfs (handovers) (push) Successful in 15s
On_Push / pdfs (minutes) (push) Successful in 13s
ci: switch over to using forgejo actions
2024-08-11 04:12:37 +01:00

47 lines
No EOL
1.5 KiB
YAML

name: On_Push
on:
push:
branches:
- 'main'
paths:
- .forgejo/**/*
- Committee/**/Handovers/*
- Minutes/**/*
- Committee/**/Budget/*
- Events/**/*
# so we can manually build the artifacts
workflow_dispatch:
jobs:
# rust code must be formatted for standardisation
pdfs:
# build it using teh base nixos system, helps with caching
runs-on: nix
strategy:
matrix:
script: [ handovers, minutes, budget, events ]
permissions:
# needs this to create tags and releases
contents: write
steps:
# get the repo first
- uses: https://code.forgejo.org/actions/checkout@v4
# actual script to run the build process
- run: nix run .#${{ matrix.script }}
# zip the files so they can be released
- run: |
mkdir releases
zip -r releases/${{ matrix.script }}.zip pdf_${{ matrix.script }}
# upload them so they are available at https://forgejo.skynet.ie/Computer_Society/open-goverance/releases/tag/minutes_latest
- uses: https://forgejo.skynet.ie/Skynet/actions-forgejo-release@v1
with:
token: ${{ secrets.API_TOKEN_FORGEJO }}
direction: upload
release-dir: releases
url: https://forgejo.skynet.ie
repo: Computer_Society/open-goverance
title: "PDFs of ${{ matrix.script }}"
tag: "${{ matrix.script }}_latest"
# basically replace an existing release if it exists
override: true