Skip to content

Commit

Permalink
add github workflow to compile app and create a release
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-Mackay committed Jan 8, 2021
1 parent b6d82bf commit cb14fc3
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/make_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Compile Application and Create Release
on:
push:
tags:
- "v*"
jobs:
build:
name: Compile Application
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: cedx/setup-dart@v2
- name: Install Dependencies
run: dart pub get
- name: Compile
run: dart compile exe bin/peot.dart -o peot
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
- TODO Document changes
draft: true
prerelease: true
- name: Upload Release Asset
id: upload_release_asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: peot
asset_name: peot
asset_content_type: application/x-executable

0 comments on commit cb14fc3

Please sign in to comment.