Skip to content

Commit

Permalink
Revert "fix: global installs do not work as I expected (#319)"
Browse files Browse the repository at this point in the history
This reverts commit 9dd38e4.
  • Loading branch information
derberg authored Nov 4, 2024
1 parent 9dd38e4 commit 41ab809
Showing 1 changed file with 2 additions and 15 deletions.
17 changes: 2 additions & 15 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 slackify-markdown@4.3.1
run: npm install -g slackify-markdown@4.3.1
- name: Slackify
uses: actions/github-script@v6
id: slackify
working-directory: slackify
env:
MARKDOWN: ${{ inputs.markdown }}
with:
Expand All @@ -46,8 +37,4 @@ runs:
core.setOutput('text', mrkdwn);
} catch (error) {
core.setFailed(error.message);
}
- name: Clean up slackify directory
shell: bash
run: |
rm -rf slackify
}

0 comments on commit 41ab809

Please sign in to comment.