feat: update package for prod #2
Workflow file for this run
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: Publish new github release | |
on: | |
pull_request: | |
branches: | |
- master | |
types: | |
- closed | |
env: | |
NODE_OPTIONS: "--no-warnings" | |
jobs: | |
release: | |
name: Publish new release | |
runs-on: ubuntu-latest | |
if: (startsWith(github.event.pull_request.head.ref, 'release/') || startsWith(github.event.pull_request.head.ref, 'hotfix-release/')) && github.event.pull_request.merged == true # only merged pull requests must trigger this job | |
steps: | |
- name: Extract version from branch name (for release branches) | |
id: extract-version | |
run: | | |
BRANCH_NAME="${{ github.event.pull_request.head.ref }}" | |
VERSION=${BRANCH_NAME#hotfix-} | |
VERSION=${VERSION#release/} | |
echo "release_version=$VERSION" >> $GITHUB_OUTPUT | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Yarn setup | |
uses: DerYeger/yarn-setup-action@master | |
with: | |
node-version: 10 | |
- name: Install dependencies | |
env: | |
HUSKY: 0 | |
run: | | |
yarn install --frozen-lockfile | |
# In order to make a commit, we need to initialize a user. | |
# You may choose to write something less generic here if you want, it doesn't matter functionality wise. | |
- name: Initialize mandatory git config | |
run: | | |
git config user.name "GitHub actions" | |
git config user.email [email protected] | |
- name: Create GitHub Releases | |
id: create_release | |
env: | |
HUSKY: 0 | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
echo "TODO" | |
- name: Create pull request into develop | |
uses: repo-sync/pull-request@v2 | |
with: | |
source_branch: 'master' | |
destination_branch: 'develop' | |
github_token: ${{ secrets.PAT }} | |
pr_title: 'chore(release): pulling master into develop post release v${{ steps.extract-version.outputs.release_version }}' | |
pr_body: ':crown: *An automated PR*' | |
pr_reviewer: 'bardisg,MoumitaM,saikumarrs' | |
- name: Delete hotfix release branch | |
uses: koj-co/delete-merged-action@master | |
if: startsWith(github.event.pull_request.head.ref, 'hotfix-release/') | |
with: | |
branches: 'hotfix-release/*' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Delete release branch | |
uses: koj-co/delete-merged-action@master | |
if: startsWith(github.event.pull_request.head.ref, 'release/') | |
with: | |
branches: 'release/*' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |