Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/create_and_publish_releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:

- name: Setup git user
run: |
git config user.name "Paul Sojan"
git config user.email "paul.sojan@bigbinary.com"
git config user.name "Shashank Bhatotia"
git config user.email "shashank.bhatotia@bigbinary.com"
- name: Setup NodeJS LTS version
uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516
with:
Expand All @@ -29,9 +29,6 @@ jobs:
- name: Setup the project
run: yarn install

- name: Generate production build
run: yarn build

- name: Prefix version tag with "v"
run: yarn config set version-tag-prefix "v"

Expand All @@ -50,6 +47,9 @@ jobs:
if: ${{ contains(github.event.pull_request.labels.*.name, 'major') }}
run: yarn version --major

- name: Generate production build
run: yarn build

- name: Get the package version from package.json
uses: tyankatsu0105/read-package-version-actions@5aad2bb630a577ee4255546eb3ee0593df68f6ca
id: package-version
Expand Down
Loading