We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8753b7c commit ee2e53eCopy full SHA for ee2e53e
.github/workflows/main.yml
@@ -0,0 +1,15 @@
1
+name: CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+ - name: Trigger publish
13
+ run: scripts/trigger
14
+ env:
15
+ TOKEN: ${{ secrets.TRIGGER_TOKEN }}
scripts/trigger
@@ -0,0 +1,3 @@
+#!/bin/bash
+curl -XPOST -H "Accept: application/vnd.github.everest-preview+json" -H "Content-Type: application/json" -H "Authorization: token $TOKEN" https://api.github.com/repos/cognitect/clojurescript-org-style/dispatches --data '{"event_type": "publish"}'
0 commit comments