From a0c0d816a5f00d3b99029436f245c8ea076d45b3 Mon Sep 17 00:00:00 2001 From: "H. L. Nourse" <32994022+thenoursehorse@users.noreply.github.com> Date: Tue, 31 Oct 2023 13:58:26 +0900 Subject: [PATCH] fix(cd): change artifact name (#36) --- .github/workflows/cd.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 21221ac..8f1484e 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -6,6 +6,10 @@ on: branches: - main +concurrency: + group: "pages" + cancel-in-progress: true + jobs: bump-version: @@ -97,6 +101,7 @@ jobs: uses: actions/deploy-pages@v2 dist: + needs: [bump-version] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -115,7 +120,7 @@ jobs: steps: - uses: actions/download-artifact@v3 with: - name: artifact + name: Packages path: dist - uses: pypa/gh-action-pypi-publish@release/v1 \ No newline at end of file