Skip to content

Adding Dojo

Adding Dojo #16

Workflow file for this run

name: Release
on:
push:
branches:
- main
paths:
- 'ISC/**'
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Create release
run: |
echo $GITHUB_RUN_NUMBER > version.txt
zip -r ISC.zip ISC
gh release create v$GITHUB_RUN_NUMBER 'ISC.zip'
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}