From 96381538ac1e0c3a4dcd41081dc3ab51a9727599 Mon Sep 17 00:00:00 2001 From: FantasticFiasco Date: Sun, 24 Mar 2024 22:58:22 +0100 Subject: [PATCH] wip --- .github/workflows/ci-cd.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 9656ffc8..ad09fa95 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -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: @@ -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", + });