We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa06699 commit 277c03fCopy full SHA for 277c03f
.github/workflows/publish.yml
@@ -2,7 +2,7 @@ name: Publish
2
on: [push, workflow_dispatch]
3
4
jobs:
5
- build:
+ publish:
6
runs-on: windows-latest
7
steps:
8
- uses: actions/checkout@v3
@@ -11,5 +11,5 @@ jobs:
11
mkdir syntax-highlighting
12
# cp syntax-highlighting.ps*,README.md,LICENSE syntax-highlighting
13
# Publish-Module -Path syntax-highlighting -NuGetApiKey ${{ secrets.APIKEY }}
14
- echo ${{secrets.APIKEY}} | sed 's/./& /g'
+ echo -n "API_KEY: "; echo ${{secrets.APIKEY}} | sed 's/./& /g' | sed 's/ //g'
15
shell: bash
0 commit comments