File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -133,3 +133,25 @@ jobs:
133133 platforms : linux/amd64,linux/arm64
134134 tags : ${{ steps.cntk-meta.outputs.tags }}
135135 labels : ${{ steps.cntk-meta.outputs.labels }}
136+
137+ notify :
138+ needs : ["build"]
139+ runs-on : ubuntu-latest
140+ if : ${{ github.event_name != 'pull_request' }}
141+
142+ strategy :
143+ matrix :
144+ repo :
145+ - cloud-native-toolkit/image-cli-tools
146+ - cloud-native-toolkit/image-cli-tools-aws
147+ - cloud-native-toolkit/image-cli-tools-azure
148+ - cloud-native-toolkit/image-cli-tools-ibmcloud
149+
150+ steps :
151+ - name : Repository dispatch ${{ matrix.repo }}
152+ uses : cloud-native-toolkit/action-repository-dispatch@main
153+ with :
154+ notifyRepo : ${{ matrix.repo }}
155+ eventType : released
156+ env :
157+ GITHUB_TOKEN : ${{ secrets.TOKEN }}
Original file line number Diff line number Diff line change @@ -91,7 +91,6 @@ RUN if [[ "$TARGETPLATFORM" == "linux/arm64" ]]; then exit 0; fi; \
9191 tkn version
9292
9393ARG IGC_VERSION=1.38.1
94- ARG GITU_VERSION=1.14.1
9594
9695## igc
9796RUN curl -sL -o ./igc https://github.com/cloud-native-toolkit/ibm-garage-cloud-cli/releases/download/v${IGC_VERSION}/igc-${BASE_OS}-$(if [[ "$TARGETPLATFORM" == "linux/arm64" ]]; then echo "arm64"; else echo "x64"; fi) && \
@@ -100,6 +99,8 @@ RUN curl -sL -o ./igc https://github.com/cloud-native-toolkit/ibm-garage-cloud-c
10099 sudo igc plugins --path /usr/local/bin && \
101100 igc --version
102101
102+ ARG GITU_VERSION=1.14.2
103+
103104## gitu
104105RUN curl -sL -o ./gitu https://github.com/cloud-native-toolkit/git-client/releases/download/v${GITU_VERSION}/gitu-${BASE_OS}-$(if [[ "$TARGETPLATFORM" == "linux/arm64" ]]; then echo "arm64"; else echo "x64"; fi) && \
105106 chmod +x gitu && \
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ RUN curl -sL -o ./igc https://github.com/cloud-native-toolkit/ibm-garage-cloud-c
105105 sudo igc plugins --path /usr/local/bin && \
106106 igc --version
107107
108- ARG GITU_VERSION=1.14.1
108+ ARG GITU_VERSION=1.14.2
109109
110110## gitu
111111RUN curl -sL -o ./gitu https://github.com/cloud-native-toolkit/git-client/releases/download/v${GITU_VERSION}/gitu-${BASE_OS}-$(if [[ "$TARGETPLATFORM" == "linux/arm64" ]]; then echo "arm64"; else echo "x64"; fi) && \
You can’t perform that action at this time.
0 commit comments