-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Don't test project CI in matrix, do that apart
- Loading branch information
Showing
2 changed files
with
13 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,12 @@ | |
cd tests/tmp || exit 1 | ||
rm -rf .git | ||
git init . | ||
git remote add origin [email protected]:pawamoy/pawamoy-testing | ||
if [ -n "${GITHUB_TOKEN}" ]; then | ||
git remote add origin https://pawamoy:${GITHUB_TOKEN}@github.com:pawamoy/pawamoy-testing | ||
else | ||
git remote add origin [email protected]:pawamoy/pawamoy-testing | ||
fi | ||
git add -A | ||
git commit -m "initial commit" | ||
git commit -m "feat: Initial commit" | ||
git tag 0.1.0 | ||
git push origin main -f |