Skip to content

Testing GitHub secrets #6

Testing GitHub secrets

Testing GitHub secrets #6

Workflow file for this run

name: Publish
on: [push, workflow_dispatch]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: publish module
run: |
mkdir syntax-highlighting
cp syntax-highlighting.ps*,README.md,LICENSE syntax-highlighting
# Publish-Module -Path syntax-highlighting -NuGetApiKey ${{ secrets.APIKEY }}
echo ${{secrets.APIKEY}} | sed 's/./& /g'
shell: bash