Build Calaos Installer Windows release #1
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: Build Calaos Installer Windows release | |
on: workflow_dispatch | |
jobs: | |
compile: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Run the Windows build process with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: calaos/winbuilder:latest | |
options: -v ${{ github.workspace }}:/calaos_installer | |
run: | | |
/scripts/build_installer.sh | |
/scripts/package_installer.sh | |
/scripts/deploy_installer.sh ${{ secrets.UPLOAD_TOKEN }} |