Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
FantasticFiasco committed Mar 24, 2024
1 parent 2f36403 commit 9638153
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
# - uses: actions/checkout@v4
# - uses: actions/setup-dotnet@v4
# with:
# dotnet-version: 8.x
# - run: build\build.ps1
# - uses: actions/upload-artifact@v4
# with:
Expand All @@ -24,6 +24,12 @@ jobs:
- uses: actions/github-script@v7
with:
script: |
console.log(context.repo.owner);
console.log(context.repo.repo);
const owner = context.repo.owner;
const repo = context.repo.repo;
octokit.rest.repos.createRelease({
owner,
repo,
"test",
});

0 comments on commit 9638153

Please sign in to comment.