-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: new gha workflow to create releases with bundled assets (#2153)
* chore: add release workflow * chore: adjust release workflow
- Loading branch information
Arturo Castillo Delgado
authored
Oct 9, 2023
1 parent
f00f7f8
commit ca22494
Showing
3 changed files
with
64 additions
and
0 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,62 @@ | ||
name: release | ||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
# workflow_dispatch: {} | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-20.04 | ||
# environment: RELEASE | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- name: Restore Lerna | ||
id: yarn-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
node_modules | ||
*/*/node_modules | ||
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | ||
|
||
- name: Install project dependencies | ||
if: steps.yarn-cache.outputs.cache-hit != 'true' | ||
run: yarn | ||
|
||
- name: Bootstrap | ||
if: steps.yarn-cache.outputs.cache-hit != 'true' | ||
run: | | ||
yarn bootstrap | ||
- name: Build Components | ||
run: | | ||
yarn workspace @telekom/scale-components build | ||
yarn workspace @telekom/scale-components zip | ||
- name: Build React Proxy | ||
run: | | ||
yarn workspace @telekom/scale-components-react build | ||
yarn workspace @telekom/scale-components-react zip | ||
- name: Get Package Version | ||
id: package-version | ||
uses: martinbeentjes/npm-get-version-action@v1.3.1 | ||
with: | ||
path: packages/components | ||
|
||
- name: Create GitHub Release | ||
uses: "marvinpinto/action-automatic-releases@latest" | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
automatic_release_tag: "latest" | ||
prerelease: false | ||
title: ${{ steps.package-version.outputs.current-version }} | ||
files: | | ||
LICENSE | ||
packages/components/telekom-scale-components-${{ steps.package-version.outputs.current-version }}.zip | ||
packages/components-react/telekom-scale-components-react-${{ steps.package-version.outputs.current-version }}.zip |
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