Skip to content

Commit

Permalink
Workflow for building release files
Browse files Browse the repository at this point in the history
  • Loading branch information
mrvisscher committed Jul 15, 2024
1 parent 1dd31f2 commit a3c42c2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/check_dev_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
schedule:
- cron: '0 0 * * *' # Runs daily at midnight
workflow_dispatch: # Allows manual triggering
push:
branches:
- main

jobs:
check-release:
Expand Down Expand Up @@ -40,8 +43,11 @@ jobs:
runs-on: windows-latest
needs: check-release
if: ${{ needs.check-release.outputs.current != needs.check-release.outputs.latest }}
env:
CURRENT: ${{ needs.check-release.outputs.current }}
LATEST: ${{ needs.check-release.outputs.latest }}
steps:
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: ab_releases/dev/windows/win-environment-${{ needs.check-release.outputs.current }}.txt
environment-file: ab_releases/dev/windows/win-environment-${{CURRENT}}.txt
create-args: --name environment

0 comments on commit a3c42c2

Please sign in to comment.