Skip to content

Commit 6ba7baf

Browse files
authored
Merge pull request #5 from hamermike/test/pr
Tinker with deploy
2 parents 7ace227 + 448b9a4 commit 6ba7baf

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,16 @@ jobs:
1010
if: ${{ !github.event.release.prerelease && github.event.release.target_commitish == 'master' }}
1111
runs-on: ubuntu-latest
1212
steps:
13+
- uses: octokit/[email protected]
14+
id: get_collaborator_permission
15+
with:
16+
route: GET /repos/:owner/:repo/collaborators/:username/permission
17+
owner: Bandwidth
18+
repo: csharp-sdk
19+
username: ${{ github.event.release.author.login }}
20+
- run: echo "Permission - ${{ fromJson(steps.get_collaborator_permission.outputs.data).permission }}"
1321
- uses: actions/checkout@v2
1422
- uses: actions/setup-dotnet@v1
1523
with:
1624
dotnet-version: '2.2.x'
1725
- run: dotnet build
18-
- run: echo ${{ github.event }}

0 commit comments

Comments
 (0)