Skip to content

Commit b0927a4

Browse files
committed
[*] fix and disable daily build
1 parent 2c76677 commit b0927a4

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/daily-build.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@ on:
88

99
jobs:
1010
daily_build:
11+
if: false # set to false to disable
1112
runs-on: ${{ matrix.operating-system }}
1213
strategy:
1314
matrix:
1415
operating-system: [windows-latest,ubuntu-latest,macos-latest]
1516
lazarus-versions: [stable] #[dist, stable, 2.0.12, 2.0.10, 2.0.8, 2.0.6]
1617

1718
steps:
18-
- uses: actions/checkout@v2
19+
20+
- name: Check out the latest version
21+
uses: actions/checkout@v2
22+
1923
- name: Install Lazarus
2024
uses: gcarreno/setup-lazarus@v3.2
2125
with:
@@ -35,9 +39,9 @@ jobs:
3539
- name: Pack
3640
shell: bash
3741
run: |
38-
release_name="pg_timetable_gui-${{ matrix.target }}"
42+
release_name="pg_timetable_gui-${{ matrix.operating-system }}"
3943
ls -a
40-
if [ "${{ matrix.target }}" == "win-x64" ]; then
44+
if [ "${{ matrix.operating-system }}" == "windows-latest" ]; then
4145
# Pack to zip for Windows
4246
7z a -tzip "${release_name}.zip" "pg_timetable_gui.exe"
4347
else

0 commit comments

Comments
 (0)