From fbd8df1aee2fbe837efb2ea606b802db6e1de242 Mon Sep 17 00:00:00 2001 From: Oliver Dunk Date: Tue, 16 Apr 2024 18:45:35 +0100 Subject: [PATCH] Add ARTIFACT_NAME to w3c/spec-prod invocation Adds the ARTIFACT_NAME input value to avoid an issue where conflicting artifacts were added and the workflow would fail. --- .github/workflows/deploy.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d0c2259b..7c69f3e1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -28,8 +28,10 @@ jobs: strategy: matrix: include: - - source: ./specification/index.bs - - source: ./specification/window.browser.bs + - name: specification + source: ./specification/index.bs + - name: window-browser + source: ./specification/window.browser.bs # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -45,3 +47,4 @@ jobs: # Deployment will be available at: https://w3c.github.io/webextensions/specification SOURCE: ${{ matrix.source }} TOOLCHAIN: 'bikeshed' + ARTIFACT_NAME: ${{ matrix.name }}