-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use a new blob upload action, which might play better on windows and mac (hopefully).
- Loading branch information
1 parent
9ef3675
commit 02a3d8b
Showing
1 changed file
with
14 additions
and
6 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 |
---|---|---|
|
@@ -40,14 +40,22 @@ jobs: | |
- name: Build with Gradle | ||
run: ./gradlew jlinkZip | ||
|
||
- name: Upload to Azure Blob Storage | ||
uses: bacongobbler/[email protected] | ||
# - name: Upload to Azure Blob Storage | ||
# uses: bacongobbler/[email protected] | ||
# with: | ||
# source_dir: 'build/dist' | ||
# container_name: 'downloads' | ||
# extra_args: '--destination-path scenic-view' | ||
# connection_string: ${{ secrets.ConnectionString }} | ||
# overwrite: 'true' | ||
- uses: LanceMcCarthy/Action-AzureBlobUpload@v2 | ||
name: Azure Blob Upload | ||
with: | ||
source_dir: 'build/dist' | ||
container_name: 'downloads' | ||
extra_args: '--destination-path scenic-view' | ||
connection_string: ${{ secrets.ConnectionString }} | ||
overwrite: 'true' | ||
container_name: downloads | ||
source_folder: build/dist | ||
destination_folder: scenic-view | ||
delete_if_exists: true | ||
|
||
# - name: Purge Azure CDN | ||
# uses: svanboxel/azure-purge-cdn@main | ||
|