Skip to content

build: batch svgs for inkscape (again) (#54) #26

build: batch svgs for inkscape (again) (#54)

build: batch svgs for inkscape (again) (#54) #26

Workflow file for this run

name: release
on:
workflow_dispatch:
push:
branches: [main]
permissions:
contents: write
pull-requests: write
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
id: release
outputs:
release_created: ${{ steps.release.outputs.release_created }}
tag_name: ${{ steps.release.outputs.tag_name }}
release:
runs-on: ubuntu-latest
needs: release-please
if: ${{ needs.release-please.outputs.release_created }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Build
run: nix build . -L
- name: Add zips to release
run: gh release upload ${{ needs.release-please.outputs.tag_name }} result/*.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}