Merge pull request #1 from poirazis/develop #2
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: | |
push: | |
branches: | |
- master | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
path: ${{ github.workspace }}/bb-component-SuperFieldText | |
- uses: actions/checkout@v3 | |
name: Checkout Super Components Shared code repository | |
with: | |
repository: poirazis/bb_super_components_shared | |
path: ${{ github.workspace }}/bb_super_components_shared | |
ref: develop | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
- name: Make the production plugin bundle | |
run: | | |
cd bb_super_components_shared | |
yarn | |
cd ../bb-component-SuperTable | |
release_version=$(cat package.json | jq -r '.version') | |
echo "RELEASE_VERSION=$release_version" >> $GITHUB_ENV | |
yarn | |
yarn build | |
- name: Perform Github Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: v${{ env.RELEASE_VERSION }} | |
tag_name: v${{ env.RELEASE_VERSION }} | |
generate_release_notes: true | |
files: | | |
${{ github.workspace }}/bb-component-SuperTable/dist/*.tar.gz |