production #78
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
name: Release on PR Merge | |
on: deployment | |
jobs: | |
release-and-bump-version: | |
if: github.event.deployment.environment == 'production' | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: '${{ secrets.GAUGEBOT_GITHUB_TOKEN }}' | |
NPM_TOKEN: '${{ secrets.NPM_TOKEN }}' | |
CI: true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16' | |
registry-url: 'https://registry.npmjs.org' | |
- name: npm install | |
run: | | |
npm install | |
- name: Setup git | |
run: | | |
git config --global user.name "$(git --no-pager log --format=format:'%an' -n 1)" | |
git config --global user.email "$(git --no-pager log --format=format:'%ae' -n 1)" | |
- name: Deploy on github | |
run: | | |
version=$(grep '"version"' package.json | sed 's/"version":[[:space:]]*"//' | sed 's/",//' | tr -d [:space:]) | |
if [ -z "$version" ]; then | |
echo "Taiko version is not set" | |
exit 1 | |
fi | |
echo -e "taiko v$version\n\n" > desc.txt | |
release_description=$(ruby -e "$(curl -sSfL https://github.com/getgauge/gauge/raw/master/build/create_release_text.rb)" getgauge taiko) | |
echo "$release_description" >> desc.txt | |
echo "Creating new draft for release v$version" | |
gh release create "v$version" -F ./desc.txt | |
rm -rf desc.txt | |
- name: 'deployment success' | |
if: success() | |
uses: 'deliverybot/status@master' | |
with: | |
state: 'success' | |
token: '${{ secrets.GITHUB_TOKEN }}' | |
- name: 'deployment failure' | |
if: failure() | |
uses: 'deliverybot/status@master' | |
with: | |
state: 'failure' | |
token: '${{ secrets.GITHUB_TOKEN }}' | |
- name: Deploy npm | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: | | |
npm publish --access=public |