diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 7b03184..ed1fb28 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -31,9 +31,9 @@ jobs: # id: is_docs_only # run: echo "docs_only=${{ steps.changed-files-specific.outputs.only_modified == 'true' }}" >> "$GITHUB_OUTPUT" - - name: Install deps - if: ${{ steps.changed-files.outputs.only_modified == 'true' }} - run: npm ci + - name: Only files in matcher have been modified + if: steps.changed-files.outputs.only_modified == 'true' + run: echo "only_modified == 'true'" - name: Print all changed files if: steps.changed-files.outputs.any_changed == 'true' diff --git a/docs/releasing.md b/docs/releasing.md index f1ee460..3806296 100644 --- a/docs/releasing.md +++ b/docs/releasing.md @@ -12,3 +12,6 @@ To do this: - Run `git push && git push --tags`. - When creating a release on the UI, specify the tag, link PRs associated to the release and include description of all changes. // + + +/