Skip to content

Commit

Permalink
krankerl ci
Browse files Browse the repository at this point in the history
  • Loading branch information
icewind1991 committed Mar 9, 2021
1 parent 0d823d9 commit be14e1c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/krankler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Release

on:
release:
types: [created]

env:
APP_NAME: files_markdown

jobs:
release:
name: Build release
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup krankler
run: |
wget https://github.com/ChristophWurst/krankerl/releases/download/v0.13.0/krankerl
chmod +x krankerl
- name: Package app
run: ./krankerl package
- name: Upload binary to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/artifacts/${{ env.APP_NAME }}.tar.gz
asset_name: ${{ env.APP_NAME }}.tar.gz
tag: ${{ github.ref }}

0 comments on commit be14e1c

Please sign in to comment.