We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e28617f commit da1b9c0Copy full SHA for da1b9c0
.github/workflows/push.yml
@@ -33,6 +33,15 @@ jobs:
33
# raco pkg install --auto www/
34
raco make www/main.scrbl
35
make -C www main
36
+ - name: Generate assignment zips
37
+ env:
38
+ GITHUB_TOKEN: ${{ secrets.PAT_ZIPS_WORKFLOW }}
39
+ run: |
40
+ curl -X POST \
41
+ -H "Accept: application/vnd.github+json" \
42
+ -H "Authorization: Bearer $GITHUB_TOKEN" \
43
+ https://api.github.com/repos/cmsc430/assignments/actions/workflows/push.yml/dispatches \
44
+ -d '{"ref":"main"}'
45
- name: Archive www
46
uses: actions/upload-pages-artifact@v3
47
with:
0 commit comments