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 3e4f405 commit c1b193aCopy full SHA for c1b193a
.github/workflows/publish.yaml
@@ -0,0 +1,18 @@
1
+name: Publish
2
+on:
3
+ workflow_dispatch:
4
+ release:
5
+ types: [published]
6
+
7
+jobs:
8
+ publish:
9
+ name: Publish
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Publish
14
+ shell: pwsh
15
+ run: |
16
+ $apiKey = '${{ secrets.PS_GALLERY_API_KEY }}' | ConvertTo-SecureString -AsPlainText -Force
17
+ $cred = [pscredential]::new('apikey', $apiKey)
18
+ ./build.ps1 -Task Publish -PSGalleryApiKey $cred -Bootstrap
.github/workflows/CI.yaml .github/workflows/test.yaml.github/workflows/CI.yaml renamed to .github/workflows/test.yaml
@@ -1,8 +1,8 @@
-name: CI
+name: Test
on: [push, pull_request]
jobs:
test:
- name: Run Tests
+ name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
0 commit comments