Deploy #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/checkout@v3 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Create Jars | |
run: ./gradlew jar | |
- name: Run Conveyor | |
uses: hydraulic-software/conveyor/actions/build@v12.0 | |
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 |