Skip to content

Commit 85d3182

Browse files
authored
Create release.yml
1 parent 09fe0ec commit 85d3182

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Release
2+
3+
on: [release]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
secrets: ["api_key"]
10+
11+
steps:
12+
- uses: actions/checkout@v1
13+
- name: Publish
14+
run: |
15+
pwsh -Command "Publish-Module -Path ./Selenium.psd1 -NuGetApiKey $Env:api_key"
16+

0 commit comments

Comments
 (0)