Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed bug in import path CI #919

Merged
merged 4 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,21 @@ jobs:
if: ${{ steps.push.outcome == 'failure' }}
run: |
echo "Push failed. The token might be expired or have insufficient permissions. Please check your token."
echo "The token can be found in the 'dev-stride' account. To view the token, login to 'dev-stride' and go to:"
echo " -> Profile"
echo " -> Settings"
echo " -> Developer Settings"
echo " -> Personal Access Tokens"
echo " -> Tokens (classic)"
echo " -> 'GH Actions' Token"
echo ""
echo "If the token is expired, you can click on the token and then select 'Regenerate Token'"
echo "After regenerating a new token, you'll have to update the 'GH_ACTIONS_PAT' environment variable:"
echo " -> Navigate to the stride repo"
echo " -> Settings"
echo " -> Secrets and variables"
echo " -> Actions"
echo " -> Then modify 'GH_ACTIONS_PAT'"
exit 1

- name: Fetch New Branch
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -164,14 +164,14 @@ stop-local-to-main:
### Protobuf ###
###############################################################################

containerProtoVer=0.13.0
containerProtoVer=0.14.0
containerProtoImage=ghcr.io/cosmos/proto-builder:$(containerProtoVer)

proto-all: proto-format proto-lint proto-gen

proto-gen:
@echo "Generating Protobuf files"
@$(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace $(containerProtoImage) \
@$(DOCKER) run --user $(id -u):$(id -g) --rm -v $(CURDIR):/workspace --workdir /workspace $(containerProtoImage) \
sh ./scripts/protocgen.sh;

proto-format:
Expand Down
2 changes: 1 addition & 1 deletion deps/gaia
Submodule gaia updated 220 files
Loading