We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f75fa23 commit 3f7098fCopy full SHA for 3f7098f
.github/workflows/pack.yml
@@ -30,7 +30,7 @@ jobs:
30
run: chmod +x pack.sh
31
32
- name: Generate NuGet package
33
- run: pack.sh
+ run: bash pack.sh
34
35
- name: Publish package in GitHub
36
run: dotnet nuget push ./artifacts/packages/Release/GitHub/*.nupkg --api-key ${{ secrets.PUSH_GITHUB }} --source https://nuget.pkg.github.com/t1moH1ch/index.json
pack.sh
@@ -1,4 +1,4 @@
1
-#!/usr/bin/env bash
+#!/bin/bash
2
3
for file in $(find ./src/ -maxdepth 2 -name '*.csproj')
4
do
0 commit comments