This commit is contained in:
Joseph Garrone 2020-05-17 00:39:26 +02:00
commit c787a145e3
3 changed files with 9 additions and 12 deletions

View file

@ -36,9 +36,13 @@ jobs:
needs: update_changelog_and_sync_package_lock_version needs: update_changelog_and_sync_package_lock_version
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Remove branch 'latest' - name: Remove branch 'latest'
continue-on-error: true continue-on-error: true
run: git push origin :latest run: |
git branch -d latest || true
git push origin :latest
- name: Create the new 'latest' branch - name: Create the new 'latest' branch
run: | run: |
git branch latest git branch latest

View file

@ -47,13 +47,6 @@ jobs:
USER_OR_ORG: ${{ github.repository_owner }} USER_OR_ORG: ${{ github.repository_owner }}
DESC: ${{ github.event.repository.description }} DESC: ${{ github.event.repository.description }}
REPO_NAME_NO_DASHES: ${{ steps.id2.outputs.replace_result }} REPO_NAME_NO_DASHES: ${{ steps.id2.outputs.replace_result }}
- uses: actions/setup-node@v1
- name: Update pre-configured dev dependencies
run: |
npm install --save-dev denoify
npm install --save-dev typescript
npm install --save-dev evt
rm package-lock.json
- name: Remove this workflow, it only needs to be run once. - name: Remove this workflow, it only needs to be run once.
run: rm .github/workflows/template_initialization.yaml run: rm .github/workflows/template_initialization.yaml
- name: Commit files - name: Commit files

View file

@ -37,9 +37,9 @@
"devDependencies": { "devDependencies": {
"typescript": "^3.9.0", "typescript": "^3.9.0",
"@types/node": "^10.0.0", "@types/node": "^10.0.0",
"denoify": "0.2.3", "denoify": "0.2.5",
"evt": "~1.6.8", "evt": "1.6.8",
"simplifyify": "^8.0.1", "simplifyify": "8.0.1",
"terser": "^4.6.10" "terser": "4.6.13"
} }
} }