Release v2.42.0-uroesch #59
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
# ----------------------------------------------------------------------------- | |
# Build workflow for portable apps | |
# Author: Urs Roesch https://github.com/uroesch | |
# Version: 0.11.0 | |
# ----------------------------------------------------------------------------- | |
name: build-linux | |
on: | |
push: | |
branches: | |
- workflow/* | |
pull_request: | |
branches: | |
- master | |
- main | |
jobs: | |
build-linux: | |
if: endsWith(github.repository, 'Portable') | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
container: | |
image: uroesch/pa-wine:latest | |
env: | |
RUN_AS_ROOT: yes | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Run build script via docker | |
shell: bash | |
run: | | |
/entrypoint.sh \ | |
/usr/bin/pwsh -ExecutionPolicy ByPass \ | |
Other/Update/Update.ps1 -InfraDir /pa-build | |
timeout-minutes: 10 |