Skip to content

Commit

Permalink
Update the generator
Browse files Browse the repository at this point in the history
  • Loading branch information
Damien Goehrig committed Dec 8, 2023
1 parent eae31c6 commit f2d59d2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 13 deletions.
30 changes: 18 additions & 12 deletions .github/workflows/generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
version:
description: "version"
required: true
default: "v14"
default: "v15"

jobs:
build:
Expand All @@ -15,7 +15,8 @@ jobs:
image: alpine:latest
env:
VERSION: ${{ github.event.inputs.version }}
PUBLISH_PKG: github.com/shenzhencenter/google-ads-pb
BRANCH_NAME: ${{ github.event.inputs.version }}
PUBLISH_PKG: github.com/Optable/google-ads-pb
INPUT_PATH: /googleapis
OUTPUT_PATH: ~/go/src/google-ads-pb
ADSLIB_PATH: /googleapis/google/ads/googleads/${{ github.event.inputs.version }}
Expand All @@ -34,10 +35,11 @@ jobs:
- name: Clone repositories
run: |
git clone --branch=develop https://$GITHUB_ACTOR_ID:${{ secrets.GITHUB_TOKEN }}@github.com/shenzhencenter/google-ads-pb.git $OUTPUT_PATH
git clone --depth=1 --branch=master https://github.com/googleapis/googleapis.git $INPUT_PATH
git clone https://$GITHUB_ACTOR_ID:${{ secrets.GITHUB_TOKEN }}@github.com/Optable/google-ads-pb.git $OUTPUT_PATH
git -C $OUTPUT_PATH checkout -b $BRANCH_NAME
git clone --depth=1 https://github.com/googleapis/googleapis.git $INPUT_PATH
if [ ! -d $INPUT_PATH/google/protobuf ]; then
git clone --depth=1 --branch=main https://github.com/protocolbuffers/protobuf.git /protobuf
git clone --depth=1 https://github.com/protocolbuffers/protobuf.git /protobuf
ln -s /protobuf/src/google/protobuf $INPUT_PATH/google/protobuf
fi
Expand Down Expand Up @@ -77,7 +79,7 @@ jobs:
run: |
cd $OUTPUT_PATH
if [ ! -f go.mod ]; then
go mod init github.com/shenzhencenter/google-ads-pb
go mod init github.com/Optable/google-ads-pb
fi
go mod tidy
go fmt ./...
Expand All @@ -87,11 +89,15 @@ jobs:
run: |
cd $OUTPUT_PATH
if [ -z "$(git status --porcelain)" ]; then
echo "==> No changes"
echo "==> No changes to commit"
exit 0
fi
git add .
git config user.email "16268065+xnkjj@users.noreply.github.com"
git config user.name "GitHub Action"
git commit -m "feat: updated by action, $(date)"
git push origin develop
echo "==> Committing changes"
git config user.name "GitHub Actions Bot"
git config user.email "<>"
git add .
git commit -m "Auto-generated client update for version $VERSION"
git push origin $BRANCH_NAME
echo "==> Changes have been pushed"
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: "1.20"
go-version: "1.21.0"

- name: Build
run: go mod tidy && go build -v ./...

0 comments on commit f2d59d2

Please sign in to comment.