We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c888f3 commit a827a37Copy full SHA for a827a37
.github/workflows/deploy-preview.yml
@@ -148,6 +148,22 @@ jobs:
148
timestamp-rfc3161: http://timestamp.acs.microsoft.com
149
timestamp-digest: SHA256
150
151
+ - uses: azure/login@v1
152
+ with:
153
+ creds: ${{ secrets.AZURE_CREDENTIALS }}
154
+
155
+ - name: Upload to blob storage
156
+ uses: azure/powershell@v1
157
158
+ inlineScript: |
159
+ az storage blob upload-batch --account-name "filescommunity" --destination "files" --destination-path "test" --source ${{ env.APPX_PACKAGE_DIR }} --overwrite true
160
+ azPSVersion: "latest"
161
162
+ # Azure logout
163
+ - name: logout
164
+ run: |
165
+ az logout
166
167
- name: Upload the packages to GitHub Actions
168
uses: actions/upload-artifact@v3
169
with:
0 commit comments