Skip to content

Commit

Permalink
ci(github): fix steps to setup quickstarter
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonGolms committed Jul 3, 2022
1 parent 0f5d740 commit 5f4acbd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: 'lts/*'
# Ignore README.md from find results to avoid unintentionally changes on the release step
- name: Setup Quickstarter (Project ID)
run: find . -type f -exec sed --expression 's/PROJECTID/foo/g' --in-place {} +
run: find . -type f \( ! -name "README.md" \) -exec sed -i 's/PROJECTID/foo/g' {} +
# Ignore README.md from find results to avoid unintentionally changes on the release step
- name: Setup Quickstarter (Component ID)
run: find . -type f -exec sed --expression 's/COMPONENTID/app/g' --in-place {} +
run: find . -type f \( ! -name "README.md" \) -exec sed -i 's/COMPONENTID/app/g' {} +
- name: Install Dependencies
run: npm install
- name: Release
Expand Down

0 comments on commit 5f4acbd

Please sign in to comment.