We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 649c653 commit aaf1293Copy full SHA for aaf1293
1 file changed
.github/workflows/ci.yml
@@ -27,3 +27,14 @@ jobs:
27
- name: Formatting changes
28
run: git diff
29
if: always() && steps.format.outcome != 'success'
30
+
31
+ publish:
32
+ if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
33
+ runs-on: ubuntu-latest
34
+ steps:
35
+ - uses: actions/checkout@v4
36
+ - name: Push release
37
+ shell: pwsh
38
+ run: ./Publish-WebKitDev.ps1
39
+ env:
40
+ NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
0 commit comments