Skip to content

Commit

Permalink
Fixed type in nightly workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Oct 7, 2024
1 parent ee186a5 commit 75b4a9d
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/publish-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
build-win:
runs-on: windows-latest
env:
PLATFORM: ${{ github.job }}.split('-', 1)[1]
PLATFORM: ${{ github.job.split('-', 1)[1] }}
name: 'Build Windows'
steps:
- name: Checkout repository
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
build-linux:
runs-on: ubuntu-latest
env:
PLATFORM: ${{ github.job }}.split('-', 1)[1]
PLATFORM: ${{ github.job.split('-', 1)[1] }}
name: 'Build Linux'
steps:
- name: Checkout repository
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
build-mac-intel:
runs-on: macos-13
env:
PLATFORM: ${{ github.job }}.split('-', 1)[1]
PLATFORM: ${{ github.job.split('-', 1)[1] }}
name: 'Build Mac Intel'
steps:
- name: Checkout repository
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
build-mac-m1:
runs-on: macos-14
env:
PLATFORM: ${{ github.job }}.split('-', 1)[1]
PLATFORM: ${{ github.job.split('-', 1)[1] }}
name: 'Build Mac M1'
steps:
- name: Checkout repository
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
runs-on: ubuntu-latest
name: 'Check Linux zip is created'
env:
PLATFORM: ${{ github.job }}.split('-', 2)[2]
PLATFORM: ${{ github.job.split('-', 2)[2] }}
steps:
- name: Get zip from cache
id: get-zip
Expand All @@ -200,7 +200,7 @@ jobs:
runs-on: ubuntu-latest
name: 'Check Mac Intel zip is created'
env:
PLATFORM: ${{ github.job }}.split('-', 2)[2]
PLATFORM: ${{ github.job.split('-', 2)[2] }}
steps:
- name: Get zip from cache
id: get-zip
Expand All @@ -217,7 +217,7 @@ jobs:
runs-on: ubuntu-latest
name: 'Check Mac M1 zip is created'
env:
PLATFORM: ${{ github.job }}.split('-', 2)[2]
PLATFORM: ${{ github.job.split('-', 2)[2] }}
steps:
- name: Get zip from cache
id: get-zip
Expand All @@ -234,7 +234,7 @@ jobs:
runs-on: ubuntu-latest
name: 'Check Windows zip is created'
env:
PLATFORM: ${{ github.job }}.split('-', 2)[2]
PLATFORM: ${{ github.job.split('-', 2)[2] }}
steps:
- name: Get zip from cache
id: get-zip
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
runs-on: ubuntu-latest
name: 'Upload Windows zip'
env:
PLATFORM: ${{ github.job }}.split('-', 2)[2]
PLATFORM: ${{ github.job.split('-', 2)[2] }}
steps:
- name: Get zip from cache
id: get-zip
Expand Down Expand Up @@ -324,7 +324,7 @@ jobs:
runs-on: ubuntu-latest
name: 'Upload Linux zip'
env:
PLATFORM: ${{ github.job }}.split('-', 2)[2]
PLATFORM: ${{ github.job.split('-', 2)[2] }}
steps:
- name: Get zip from cache
id: get-zip
Expand All @@ -351,7 +351,7 @@ jobs:
runs-on: ubuntu-latest
name: 'Upload Mac Intel zip'
env:
PLATFORM: ${{ github.job }}.split('-', 2)[2]
PLATFORM: ${{ github.job.split('-', 2)[2] }}
steps:
- name: Get zip from cache
id: get-zip
Expand All @@ -378,7 +378,7 @@ jobs:
runs-on: ubuntu-latest
name: 'Upload Mac M1 zip'
env:
PLATFORM: ${{ github.job }}.split('-', 2)[2]
PLATFORM: ${{ github.job.split('-', 2)[2] }}
steps:
- name: Get zip from cache
id: get-zip
Expand Down

0 comments on commit 75b4a9d

Please sign in to comment.