Skip to content

Commit

Permalink
GitHub Actions: Check something
Browse files Browse the repository at this point in the history
  • Loading branch information
helgoboss committed Apr 9, 2024
1 parent 77a5fe5 commit 315431e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,33 @@ jobs:
with:
name: ${{ matrix.settings.dest }}
path: ${{ matrix.settings.src }}
#
# - name: Create Release
# uses: actions/github-script@v4
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# script: |
# const { data } = await github.repos.createRelease({
# owner: context.repo.owner,
# repo: context.repo.repo,
# tag_name: 'v1.0.0', // Specify your tag name here
# name: 'Version 1.0.0 Release', // Specify your release name here
# body: 'Release notes for version 1.0.0', // Specify your release notes here
# draft: false, // Change to true if you want to create a draft release
# prerelease: false // Change to true if this is a pre-release
# });
# console.log('Created release:', data.html_url);

- name: List dir
shell: bash
run: ls -al

# - name: Create release
# shell: bash
# env:
# GITHUB_TOKEN: ${{ github.TOKEN }}
# run: |
# gh release create --draft --prerelease --target v0.0.0 *

# - uses: tauri-apps/tauri-action@v0
# env:
Expand Down

0 comments on commit 315431e

Please sign in to comment.