Attempt to make make GitHub Actions work

This commit is contained in:
Raymond Hill 2020-12-09 11:30:09 -05:00
parent 22a4848d8f
commit 8a754f65c1
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
1 changed files with 9 additions and 0 deletions

View File

@ -29,6 +29,15 @@ jobs:
tools/make-chromium.sh $VERSION
tools/make-firefox.sh $VERSION
tools/make-thunderbird.sh $VERSION
- name: Create GitHub release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
tag_name: ${{ steps.release_info.outputs.TAG }}
release_name: ${{ steps.release_info.outputs.TAG }}
draft: true
- name: Upload Chromium package
uses: actions/upload-release-asset@v1
env: