Skip to content

Commit

Permalink
ci: "fix: global installs do not work as I expected" (#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
derberg authored Nov 4, 2024
1 parent 9dd38e4 commit 4314ad3
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions .github/actions/slackify-markdown/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,12 @@ runs:
uses: actions/setup-node@v3
with:
node-version: 16
- name: Create and initialize slackify directory
shell: bash
run: | # We need to create a directory to install the slackify-markdown package to avoid conflicting with repositories using pnpm.
mkdir slackify
cd slackify
npm init -y
- name: Install slackify-markdown package
shell: bash
working-directory: slackify
run: |
npm install [email protected]
run: npm install [email protected]
- name: Slackify
uses: actions/github-script@v6
id: slackify
working-directory: slackify
env:
MARKDOWN: ${{ inputs.markdown }}
with:
Expand All @@ -47,7 +38,3 @@ runs:
} catch (error) {
core.setFailed(error.message);
}
- name: Clean up slackify directory
shell: bash
run: |
rm -rf slackify

0 comments on commit 4314ad3

Please sign in to comment.