Skip to content

Initial commit

Initial commit #27

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
build:
uses: ./.github/workflows/build.yml
release:
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: TypeDuck-Web
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
run: |
tar -xvf TypeDuck-Web.tar
zip -r TypeDuck-Web.zip TypeDuck-Web
gh release upload latest TypeDuck-Web.zip --clobber