-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
46e80e2
commit ca0e56a
Showing
5 changed files
with
162 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
name: Build and publish | ||
on: | ||
push: | ||
branches-ignore: | ||
- stable | ||
- beta | ||
- develop | ||
pull_request: | ||
types: [closed] | ||
branches: | ||
- stable | ||
- beta | ||
- develop | ||
env: | ||
NODE_VERSION: 16 | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Get yarn cache directory path | ||
id: yarn-cache-dir-path | ||
run: echo "::set-output name=dir::$(yarn cache dir)" | ||
|
||
- uses: actions/cache@v2 | ||
id: yarn-cache | ||
with: | ||
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-yarn- | ||
- name: Set up Node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
registry-url: 'https://registry.npmjs.org' | ||
|
||
- name: Install project | ||
run: | | ||
yarn | ||
yarn install-peers | ||
- name: Compile typescript | ||
run: yarn compile | ||
|
||
- name: Determine version | ||
run: | | ||
export BRANCH=${GITHUB_REF##*/} | ||
echo "BRANCH=$BRANCH" >> $GITHUB_ENV | ||
echo "Branch $BRANCH" | ||
export VERSION=$(bash ./scripts/calculate_version.sh) | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
echo "Version $VERSION" | ||
( test $BRANCH = "stable" && export PRERELEASE=false ) || export PRERELEASE=true | ||
echo "PRERELEASE=$PRERELEASE" >> $GITHUB_ENV | ||
- name: Publish NPM package | ||
run: ./scripts/publish_package.sh | ||
env: | ||
BRANCH: ${{ env.BRANCH }} | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ env.VERSION }} | ||
release_name: ${{ env.VERSION }} | ||
prerelease: ${{ env.PRERELEASE }} | ||
|
||
clean: | ||
runs-on: ubuntu-latest | ||
if: github.event.pull_request.merged | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
registry-url: 'https://registry.npmjs.org' | ||
|
||
- name: Remove feature tag | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: | | ||
export SOURCE_BRANCH=${GITHUB_HEAD_REF##*/} | ||
echo "Source branch: $SOURCE_BRANCH" | ||
npm dist-tag rm @skalenetwork/skale-manager-interfaces $SOURCE_BRANCH |
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
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 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
VERSION=$(node --print --eval "require('./package.json').version") | ||
USAGE_MSG='Usage: BRANCH=[BRANCH] calculate_version.sh' | ||
|
||
if [ -z "$BRANCH" ] | ||
then | ||
(>&2 echo 'You should provide branch') | ||
echo "$USAGE_MSG" | ||
exit 1 | ||
fi | ||
|
||
BRANCH=$(echo $BRANCH | tr [:upper:] [:lower:] | tr -d [:space:]) | ||
|
||
if [ -z "$VERSION" ]; then | ||
echo "The base version is not set." | ||
exit 1 | ||
fi | ||
|
||
git fetch --tags > /dev/null | ||
|
||
for (( NUMBER=0; ; NUMBER++ )) | ||
do | ||
FULL_VERSION="$VERSION-$BRANCH.$NUMBER" | ||
if ! [[ $(git tag -l | grep "$FULL_VERSION") ]] | ||
then | ||
echo "$FULL_VERSION" | tr / - | ||
break | ||
fi | ||
done |
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,31 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
USAGE_MSG='Usage: BRANCH=[BRANCH] publish_package.sh' | ||
if [ -z "$BRANCH" ] | ||
then | ||
(>&2 echo 'You should provide branch') | ||
echo "$USAGE_MSG" | ||
exit 1 | ||
fi | ||
|
||
cd "$(dirname "$0")/.." | ||
|
||
BRANCH=$(echo $BRANCH | tr [:upper:] [:lower:] | tr -d [:space:]) | ||
VERSION=$(BRANCH=$BRANCH ./scripts/calculate_version.sh) | ||
|
||
TAG="" | ||
if ! [[ $BRANCH == 'stable' ]] | ||
then | ||
TAG="--tag $BRANCH" | ||
fi | ||
|
||
if [[ "$VERSION" == *-stable.0 ]] | ||
then | ||
VERSION=${VERSION%-stable.0} | ||
fi | ||
|
||
echo "Using $VERSION as a new version" | ||
|
||
yarn publish --access public --new-version $VERSION --verbose --no-git-tag-version $TAG |