Skip to content

Commit

Permalink
Try another release provider
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyklay committed Apr 26, 2020
1 parent fbe0056 commit 4151690
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,16 +95,28 @@ jobs:
./example.phar --version
- name: Create Release
uses: sondreb/action-release@master
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
files: 'example.phar'
folder: './'
tag: ${{ steps.get-version.outputs.version }}
name: ${{ steps.get-version.outputs.version }}
tag: ${{ steps.get-version.outputs.version }}
body: 'Next stable release.'
draft: true
prerelease: false
allowUpdates: true
artifact: example.phar
artifactContentType: application/x-php

# - name: Create Release
# uses: sondreb/action-release@master
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# files: 'example.phar'
# folder: './'
# tag: ${{ steps.get-version.outputs.version }}
# name: ${{ steps.get-version.outputs.version }}
# body: 'Next stable release.'
# # This will create a draft
# draft: true
# prerelease: false

# - name: Upload Release Asset
# id: upload-release-asset
Expand Down

0 comments on commit 4151690

Please sign in to comment.