Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
zmhu committed Sep 20, 2023
1 parent 5d0efdf commit 7d47d20
Showing 1 changed file with 24 additions and 10 deletions.
34 changes: 24 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,18 +111,32 @@ jobs:

- name: Display structure of downloaded files
run: ls -R
- name: Release
uses: meeDamian/github-release@2.0

- name: aaa
uses: marvinpinto/action-automatic-releases@latest
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag: Release-v${{ steps.get_version.outputs.version-without-v }}
name: Release-v${{ steps.get_version.outputs.version-without-v }}
body: Release ${{ steps.get_version.outputs.version-without-v }}
repo_token: ${{ secrets.GITHUB_TOKEN }}
draft: true
gzip: false
files: ${{steps.download.outputs.download-path}}/
env:
VERSION: ${{ steps.get_version.outputs.version-without-v }}
title: Release-v${{ steps.get_version.outputs.version-without-v }}
automatic_release_tag: Release-v${{ steps.get_version.outputs.version-without-v }}
prerelease: false
files: |
downloads/a.txt
downloads/b.txt
downloads/c.txt
# - name: Release
# uses: meeDamian/github-release@2.0
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# tag: Release-v${{ steps.get_version.outputs.version-without-v }}
# name: Release-v${{ steps.get_version.outputs.version-without-v }}
# body: Release ${{ steps.get_version.outputs.version-without-v }}
# draft: true
# gzip: false
# files: ${{steps.download.outputs.download-path}}/
# env:
# VERSION: ${{ steps.get_version.outputs.version-without-v }}

# - name: Create Release # https://trstringer.com/github-actions-create-release-upload-artifacts/
# id: create_release
Expand Down

0 comments on commit 7d47d20

Please sign in to comment.