Skip to content

Commit

Permalink
Merge pull request #29 from getgauge-contrib/bump_proto
Browse files Browse the repository at this point in the history
remove gauge_messages submodule and use go pkg
  • Loading branch information
sriv committed Feb 1, 2024
2 parents dfb73af + 4bc1780 commit d73fa05
Show file tree
Hide file tree
Showing 13 changed files with 81 additions and 8,060 deletions.
17 changes: 3 additions & 14 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,14 @@ jobs:
- uses: actions/checkout@v1

- name: Setup go 1.17
uses: actions/setup-go@v1
uses: actions/setup-go@v5
with:
go-version: 1.17.5
go-version: stable

- name: build
run: |
go run build/make.go --all-platforms
go run build/make.go --all-platforms --distro
- name: Install hub
run: brew install hub
- name: update
run: |
cd deploy
Expand All @@ -40,16 +38,7 @@ jobs:
echo -e "JSON Report v$version\n\n" > desc.txt
release_description=$(ruby -e "$(curl -sSfL https://github.com/getgauge/gauge/raw/master/build/create_release_text.rb)" getgauge-contrib json-report)
echo "$release_description" >> desc.txt
echo "Creating new draft for release v$version"
hub release create -d -F ./desc.txt "v$version"
rm -rf desc.txt
echo "Start uploading assets..."
for i in `ls $artifacts`; do
hub release edit -m "" -a $i "v$version"
if [ $? -ne 0 ];then
exit 1
fi
done
gh release create "v$version" -F ./desc.txt $artifacts
- name: 'deployment success'
if: success()
uses: 'deliverybot/status@master'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
- uses: actions/checkout@v1

- name: Setup go 1.17
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: 1.17.5
go-version: stable

- name: Run tests
run: |
Expand Down
Loading

0 comments on commit d73fa05

Please sign in to comment.