Skip to content

Commit 63e0ad3

Browse files
authored
fix: removed download and unzip steps (#190)
<!-- markdownlint-disable-next-line first-line-heading --> ## Description Removed the Unzip stage as the download artifact step was already doing the unzip. However the download artifact step is also not needed until we automatically publish to GitHub marketplace ## Context Removes unnecessary steps in the pipeline ## Type of changes <!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply. --> - [x] Refactoring (non-breaking change) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would change existing functionality) - [ ] Bug fix (non-breaking change which fixes an issue) ## Checklist <!-- Go over all the following points, and put an `x` in all the boxes that apply. --> - [x] I am familiar with the [contributing guidelines](../docs/CONTRIBUTING.md) - [x] I have followed the code style of the project - [ ] I have added tests to cover my changes - [ ] I have updated the documentation accordingly - [ ] This PR is a result of pair or mob programming --- ## Sensitive Information Declaration To ensure the utmost confidentiality and protect your and others privacy, we kindly ask you to NOT including [PII (Personal Identifiable Information) / PID (Personal Identifiable Data)](https://digital.nhs.uk/data-and-information/keeping-data-safe-and-benefitting-the-public) or any other sensitive data in this PR (Pull Request) and the codebase changes. We will remove any PR that do contain any sensitive information. We really appreciate your cooperation in this matter. - [x] I confirm that neither PII/PID nor sensitive data are included in this PR and the codebase changes.
1 parent f9017d2 commit 63e0ad3

1 file changed

Lines changed: 0 additions & 11 deletions

File tree

.github/workflows/cicd-2-publish.yaml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,6 @@ jobs:
5050
steps:
5151
- name: "Checkout code"
5252
uses: actions/checkout@v4
53-
- name: "Download artefact"
54-
uses: actions/download-artifact@v4.1.0
55-
with:
56-
name: notify-msteams-action-dist.zip
57-
run-id: ${{ github.event.workflow_run.id }}
58-
github-token: ${{ github.token }}
59-
- name: "Unzip artefact"
60-
run: |
61-
mkdir -p ./dist
62-
rm -f ./dist/.gitkeep
63-
unzip notify-msteams-action-dist.zip -d ./dist
6453
- name: "Semantic Release"
6554
uses: cycjimmy/semantic-release-action@v4.1.0
6655
id: semantic

0 commit comments

Comments
 (0)