We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0ae24a commit 331f012Copy full SHA for 331f012
1 file changed
.github/workflows/build-and-publish.yaml
@@ -134,10 +134,11 @@ jobs:
134
ibmcloud plugin install vpc-infrastructure
135
136
- name: Delete VPC security group rule
137
+ env:
138
+ SG_ID: ${{ secrets.SG_ID }}
139
+ SG_RULE_ID: ${{ needs.build-amd64-ppc64le-s390x.outputs.sg_rule_id }}
140
run: |
- ibmcloud is security-group-rule-delete \
- ${{ secrets.SG_ID }} \
- ${{ needs.build-amd64-ppc64le-s390x.outputs.sg_rule_id }} -f
141
+ ibmcloud is security-group-rule-delete "$SG_ID" "$SG_RULE_ID" -f
142
143
build-arm64:
144
name: Build ARM64 image
0 commit comments