From be950d24a36abf34371ddb27d1cbab05e7695cfd Mon Sep 17 00:00:00 2001 From: Garrone Joseph Date: Sat, 16 May 2020 23:05:10 +0200 Subject: [PATCH 1/4] Freez dev dependency for stability --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index e41ab4c..c0d264f 100755 --- a/package.json +++ b/package.json @@ -37,9 +37,9 @@ "devDependencies": { "typescript": "^3.9.0", "@types/node": "^10.0.0", - "denoify": "0.2.3", - "evt": "~1.6.8", - "simplifyify": "^8.0.1", - "terser": "^4.6.10" + "denoify": "0.2.5", + "evt": "1.6.8", + "simplifyify": "8.0.1", + "terser": "4.6.13" } } From 95c255e499c13c3f7f078f12a3597ad168415cf9 Mon Sep 17 00:00:00 2001 From: Garrone Joseph Date: Sat, 16 May 2020 23:06:36 +0200 Subject: [PATCH 2/4] Remove useless steps --- .github/workflows/template_initialization.yaml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/template_initialization.yaml b/.github/workflows/template_initialization.yaml index 38106eb..0927726 100644 --- a/.github/workflows/template_initialization.yaml +++ b/.github/workflows/template_initialization.yaml @@ -46,13 +46,6 @@ jobs: USER_OR_ORG: ${{ github.repository_owner }} DESC: ${{ github.event.repository.description }} 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. run: rm .github/workflows/template_initialization.yaml - name: Commit files From f379a9b97e3274f01ef66c8e9c962b72e7ec20c6 Mon Sep 17 00:00:00 2001 From: Garrone Joseph Date: Sat, 16 May 2020 23:09:30 +0200 Subject: [PATCH 3/4] Remove local 'latest' branch as well --- .github/workflows/publish.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 3745266..5a52ff8 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -38,7 +38,9 @@ jobs: - uses: actions/checkout@v2 - name: Remove branch 'latest' 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 run: | git branch latest From 1853ea01fd19c43b5aae7bf88e03db7aba344af1 Mon Sep 17 00:00:00 2001 From: Garrone Joseph Date: Sun, 17 May 2020 00:09:21 +0200 Subject: [PATCH 4/4] not shallow clone here --- .github/workflows/publish.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 5a52ff8..7b90a92 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -36,6 +36,8 @@ jobs: needs: update_changelog_and_sync_package_lock_version steps: - uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: Remove branch 'latest' continue-on-error: true run: |