Skip to content

Commit

Permalink
github action to publish Releases
Browse files Browse the repository at this point in the history
  • Loading branch information
rpanfili committed Jul 17, 2021
1 parent b2e0a0e commit 7e65e21
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: "Dactyl keyboard"

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
name: "Build artifacts and publish Release"
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: satackey/[email protected]
continue-on-error: true
- name: Clean up
run: rm -r things/*
- name: Build
run: make build
- name: Release
uses: softprops/action-gh-release@v1
with:
draft: false
files: things/*
tag_name: v${{ github.run_number }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 7e65e21

Please sign in to comment.