-
-
Notifications
You must be signed in to change notification settings - Fork 32
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
Add CI #46
base: main
Are you sure you want to change the base?
Add CI #46
Conversation
e845000
to
c7d15e4
Compare
run: cargo install cargo-generate --debug | ||
- name: Instantiate template | ||
run: | | ||
git config --global init.defaultbranch main |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could you also try to git configure:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
IIRC that causes once for me on a ci run also a problem. See our workflow config
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, that didn't seem to do anything here
a7e30e8
to
1db9ba1
Compare
.github/workflows/ci.yml
Outdated
override: true | ||
target: ${{ env.TARGET }} | ||
- name: debug | ||
run: cd app-template && git status && ls -la |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here you cd
into the app-template
, I'm not sure if that would not affect further steps, so that below the cargo generate --git app-template --name out
would fail because you are in the folder already?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm, doesn't look like that's the cause either
No description provided.