All checks were successful
Publish / Nightly Release (push) Successful in 3m39s
28 lines
608 B
YAML
28 lines
608 B
YAML
name: Publish
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
publish:
|
|
name: Nightly Release
|
|
runs-on: nix-latest
|
|
env:
|
|
RUNNER_TOOL_CACHE: /toolcache # Runner Tool Cache
|
|
steps:
|
|
- name: Checkout
|
|
uses: https://gitea.com/actions/checkout@v4
|
|
|
|
- name: Build
|
|
run: nix build .#default
|
|
|
|
- name: Rename
|
|
run: mv ./result ./SixSides\ Easter\ Eggs\ \($(git rev-parse --short $GITHUB_SHA)\).zip
|
|
|
|
- name: Publish
|
|
uses: https://gitea.com/actions/gitea-release-action@v1
|
|
with:
|
|
name: Nightly
|
|
tag_name: nightly
|
|
files: |-
|
|
*.zip
|