diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c517b3b..0dad891 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ on: jobs: - Pack: + Build: strategy: matrix: include: @@ -43,13 +43,15 @@ jobs: path: '**/*.zip' compression-level: 0 - Publish: + Release: environment: GitHub Releases - needs: Pack + needs: Build runs-on: ubuntu-latest steps: - name: Download Artifacts uses: actions/download-artifact@v4 - name: Test - run: ls \ No newline at end of file + run: ls + - name: Create GitHub Release + run: gh release create v1.2.3 ./* --generate-notes --draft \ No newline at end of file