Git Builds #429
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: Git Builds | |
on: | |
schedule: | |
# At minute 17 past hour 8 and 14 (UTC) on every day-of-week from Monday through Thursday | |
# https://crontab.guru | |
- cron: '17 08,14 * * 1-5' | |
workflow_dispatch: | |
env: | |
ProjectFile: "src/NexusMods.App/NexusMods.App.csproj" | |
jobs: | |
transformInputs: | |
runs-on: ubuntu-latest | |
outputs: | |
ProjectFile: ${{ steps.setOutputs.outputs.projectFile }} | |
steps: | |
- name: Set Outputs | |
id: setOutputs | |
shell: pwsh | |
run: | | |
echo "projectFile=${{ env.ProjectFile }}" >> $env:GITHUB_OUTPUT | |
build-linux: | |
needs: [ transformInputs ] | |
uses: ./.github/workflows/build-linux-pupnet.yaml | |
with: | |
AppVersion: "0.0.1" | |
# this is a bit of a hack, you can't use environment variables here | |
# https://docs.github.com/en/actions/learn-github-actions/contexts#context-availability | |
ProjectFile: ${{ needs.transformInputs.outputs.ProjectFile }} | |
RetentionDays: 3 | |
build-windows: | |
needs: [ transformInputs ] | |
uses: ./.github/workflows/build-windows-pupnet.yaml | |
with: | |
AppVersion: "0.0.1" | |
# this is a bit of a hack, you can't use environment variables here | |
# https://docs.github.com/en/actions/learn-github-actions/contexts#context-availability | |
ProjectFile: ${{ needs.transformInputs.outputs.ProjectFile }} | |
RetentionDays: 3 |