remove workflows that I can't use :P

main
Zynh0722 2023-12-27 15:26:24 -08:00
parent 988f5bfa86
commit 08fb2eb4e8
1 changed files with 0 additions and 40 deletions

View File

@ -1,40 +0,0 @@
on:
push:
branches: [main]
name: release-please
permissions:
contents: write
pull-requests: write
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: simple
- uses: actions/checkout@v3
if: ${{ steps.release.outputs.release_created }}
- uses: denoland/setup-deno@v1
if: ${{ steps.release.outputs.release_created }}
with:
deno-version: v1.x
- run: deno task build
if: ${{ steps.release.outputs.release_created }}
- name: Create tarball
if: ${{ steps.release.outputs.release_created }}
run: tar czf catppuccin-gitea.tar.gz --directory=./dist .
- name: Upload Release Artifacts
if: ${{ steps.release.outputs.release_created }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run:
gh release upload ${{ steps.release.outputs.tag_name }} ./catppuccin-gitea.tar.gz