-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
68 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Build source code and send to Capgo | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
name: "Build code and release" | ||
steps: | ||
- name: Check out | ||
uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '16' | ||
- name: Install dependencies | ||
id: install_code | ||
run: npm i | ||
# - name: Lint | ||
# id: lint_code | ||
# run: npm run lint | ||
- name: Build | ||
id: build_code | ||
run: npm run build | ||
- uses: JS-DevTools/npm-publish@v1 | ||
with: | ||
access: public | ||
token: ${{ secrets.NPM_TOKEN }} | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Bump version | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- development | ||
|
||
jobs: | ||
bump-version: | ||
if: "!startsWith(github.event.head_commit.message, 'chore(release):')" | ||
runs-on: ubuntu-latest | ||
name: "Bump version and create changelog with standard version" | ||
steps: | ||
- name: Check out | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
token: '${{ secrets.PERSONAL_ACCESS_TOKEN }}' | ||
- name: Git config | ||
run: | | ||
git config --local user.name "github-actions[bot]" | ||
git config --local user.email "github-actions[bot]@users.noreply.github.com" | ||
- name: Create bump and changelog main | ||
if: github.ref == 'refs/heads/main' | ||
run: npx standard-version | ||
- name: Create bump and changelog development | ||
if: github.ref != 'refs/heads/main' | ||
run: npx standard-version --prerelease alpha | ||
- name: Push to origin | ||
run: | | ||
CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD) | ||
remote_repo="https://${GITHUB_ACTOR}:${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" | ||
git pull $remote_repo $CURRENT_BRANCH | ||
git push $remote_repo HEAD:$CURRENT_BRANCH --follow-tags --tags |
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