We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 952b3a7 commit 775db77Copy full SHA for 775db77
tasks/dbt-manifest-upload/action.yml
@@ -31,6 +31,7 @@ runs:
31
- name: Upload DBT Manifest for database
32
uses: azure/CLI@v1
33
with:
34
+ azcliversion: latest
35
inlineScript: |
36
az storage blob upload --account-name ${{ inputs.storage-account }} \
37
--auth-mode login \
@@ -39,14 +40,6 @@ runs:
39
40
--content-type 'application/json' \
41
--overwrite
42
- - name: add the IP address of the agent to the allowed list
43
- uses: azure/CLI@v1
44
- if: always()
45
- with:
46
- inlineScript: |
47
- echo "Remove this IP address from the rules: ${{ env.AGENT_IP}}"
48
- az storage account network-rule remove --resource-group ${{ inputs.resource-group }} --account-name ${{ inputs.storage-account }} --ip-address ${{ env.AGENT_IP}}
49
-
50
# Azure logout
51
- name: logout
52
shell: bash
0 commit comments