-
-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modified deploy-nightly workflow job to use token argument in with
part to work correctly again.
- Loading branch information
Showing
1 changed file
with
8 additions
and
16 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,9 +116,8 @@ jobs: | |
github.repository_owner == 'jens-maus' && | ||
!startsWith(matrix.platform, 'oci_') | ||
uses: WebFreak001/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.DEPLOY_TOKEN }} | ||
with: | ||
token: ${{ secrets.DEPLOY_TOKEN }} | ||
upload_url: https://uploads.github.com/repos/jens-maus/RaspberryMatic/releases/22744592/assets{?name,label} | ||
release_id: 22744592 | ||
asset_path: release/RaspberryMatic-${{ env.VERSION }}-${{ matrix.platform }}.zip | ||
|
@@ -131,9 +130,8 @@ jobs: | |
github.repository_owner == 'jens-maus' && | ||
!startsWith(matrix.platform, 'oci_') | ||
uses: WebFreak001/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.DEPLOY_TOKEN }} | ||
with: | ||
token: ${{ secrets.DEPLOY_TOKEN }} | ||
upload_url: https://uploads.github.com/repos/jens-maus/RaspberryMatic/releases/22744592/assets{?name,label} | ||
release_id: 22744592 | ||
asset_path: release/RaspberryMatic-${{ env.VERSION }}-${{ matrix.platform }}.zip.sha256 | ||
|
@@ -146,9 +144,8 @@ jobs: | |
github.repository_owner == 'jens-maus' && | ||
matrix.platform == 'rpi3' | ||
uses: WebFreak001/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.DEPLOY_TOKEN }} | ||
with: | ||
token: ${{ secrets.DEPLOY_TOKEN }} | ||
upload_url: https://uploads.github.com/repos/jens-maus/RaspberryMatic/releases/22744592/assets{?name,label} | ||
release_id: 22744592 | ||
asset_path: release/RaspberryMatic-${{ env.VERSION }}-ccu3.tgz | ||
|
@@ -161,9 +158,8 @@ jobs: | |
github.repository_owner == 'jens-maus' && | ||
matrix.platform == 'rpi3' | ||
uses: WebFreak001/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.DEPLOY_TOKEN }} | ||
with: | ||
token: ${{ secrets.DEPLOY_TOKEN }} | ||
upload_url: https://uploads.github.com/repos/jens-maus/RaspberryMatic/releases/22744592/assets{?name,label} | ||
release_id: 22744592 | ||
asset_path: release/RaspberryMatic-${{ env.VERSION }}-ccu3.tgz.sha256 | ||
|
@@ -176,9 +172,8 @@ jobs: | |
github.repository_owner == 'jens-maus' && | ||
matrix.platform == 'ova' | ||
uses: WebFreak001/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.DEPLOY_TOKEN }} | ||
with: | ||
token: ${{ secrets.DEPLOY_TOKEN }} | ||
upload_url: https://uploads.github.com/repos/jens-maus/RaspberryMatic/releases/22744592/assets{?name,label} | ||
release_id: 22744592 | ||
asset_path: release/RaspberryMatic-${{ env.VERSION }}.ova | ||
|
@@ -191,9 +186,8 @@ jobs: | |
github.repository_owner == 'jens-maus' && | ||
matrix.platform == 'ova' | ||
uses: WebFreak001/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.DEPLOY_TOKEN }} | ||
with: | ||
token: ${{ secrets.DEPLOY_TOKEN }} | ||
upload_url: https://uploads.github.com/repos/jens-maus/RaspberryMatic/releases/22744592/assets{?name,label} | ||
release_id: 22744592 | ||
asset_path: release/RaspberryMatic-${{ env.VERSION }}.ova.sha256 | ||
|
@@ -206,9 +200,8 @@ jobs: | |
github.repository_owner == 'jens-maus' && | ||
startsWith(matrix.platform, 'oci_') | ||
uses: WebFreak001/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.DEPLOY_TOKEN }} | ||
with: | ||
token: ${{ secrets.DEPLOY_TOKEN }} | ||
upload_url: https://uploads.github.com/repos/jens-maus/RaspberryMatic/releases/22744592/assets{?name,label} | ||
release_id: 22744592 | ||
asset_path: release/RaspberryMatic-${{ env.VERSION }}-${{ matrix.platform }}.tgz | ||
|
@@ -221,9 +214,8 @@ jobs: | |
github.repository_owner == 'jens-maus' && | ||
startsWith(matrix.platform, 'oci_') | ||
uses: WebFreak001/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.DEPLOY_TOKEN }} | ||
with: | ||
token: ${{ secrets.DEPLOY_TOKEN }} | ||
upload_url: https://uploads.github.com/repos/jens-maus/RaspberryMatic/releases/22744592/assets{?name,label} | ||
release_id: 22744592 | ||
asset_path: release/RaspberryMatic-${{ env.VERSION }}-${{ matrix.platform }}.tgz.sha256 | ||
|