cleanup GitHub actions (#3071)

* cleanup GHA

* remove unused parameters

* consolidate actions, improve readability

* remove unused files

* restore fetch depth
This commit is contained in:
Denys Vuika
2023-03-22 12:48:53 -04:00
committed by GitHub
parent 509bb5ee93
commit c3b9886edf
16 changed files with 68 additions and 154 deletions
+2 -2
View File
@@ -49,7 +49,7 @@ runs:
- name: Publish to GH registry
shell: bash
run: ./scripts/gh/npm-publish.sh "$TAG" "$DRY_RUN"
run: ${{ github.action_path }}/npm-publish.sh "$TAG" "$DRY_RUN"
env:
NODE_AUTH_TOKEN: ${{ inputs.github_token }}
TAG: ${{ inputs.npm_tag }}
@@ -64,7 +64,7 @@ runs:
- name: Publish to NPM registry
shell: bash
run: ./scripts/gh/npm-publish.sh "$TAG" "$DRY_RUN"
run: ${{ github.action_path }}/npm-publish.sh "$TAG" "$DRY_RUN"
env:
NODE_AUTH_TOKEN: ${{ inputs.npm_registry_token }}
TAG: ${{ inputs.npm_tag }}