Skip to content

Commit efede28

Browse files
author
Sean Sundberg
authored
Updates gitu to v1.14.2 and adds notifications (#20)
Signed-off-by: Sean Sundberg <seansund@us.ibm.com>
1 parent 57bf22a commit efede28

3 files changed

Lines changed: 25 additions & 2 deletions

File tree

.github/workflows/docker-build.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff 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 }}

Containerfile-alpine

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ RUN if [[ "$TARGETPLATFORM" == "linux/arm64" ]]; then exit 0; fi; \
9191
tkn version
9292

9393
ARG IGC_VERSION=1.38.1
94-
ARG GITU_VERSION=1.14.1
9594

9695
## igc
9796
RUN 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
104105
RUN 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 && \

Containerfile-fedora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
111111
RUN 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) && \

0 commit comments

Comments
 (0)