Skip to content

Commit

Permalink
Try github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
13pgeiser committed Dec 5, 2022
1 parent 0bbe32e commit 4612ee4
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Publish

on:
push:
tags:
- '*'

jobs:
build:
name: Publish binaries
runs-on: ubuntu-latest

steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
- name: Make
run: make
- name: Test iso
run: make test_iso
- name: Test Ansible
run: make test_ansible
- name: Create release
uses: ncipollo/release-action@v1
with:
artifacts: "release/*"
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 4612ee4

Please sign in to comment.