-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (25 loc) · 882 Bytes
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Deploy
on: [ workflow_dispatch ]
jobs:
build:
# Use the Build workflow described above
uses: ./.github/workflows/build.yml
deploy:
needs: [ build ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Create Jars
run: ./gradlew jar
- name: Run Conveyor
uses: hydraulic-software/conveyor/actions/[email protected]
env:
OAUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
extra_flags: '-f ./gui/conveyor.conf'
command: make copied-site
signing_key: ${{ secrets.SIGNING_KEY }}
agree_to_license: 1