Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gwendolyngoetz committed Sep 28, 2022
1 parent 8ec0c6b commit d0efea0
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/actions/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build Only

on:
workflow_dispatch: {}
push:
branches: [ master ]
paths-ignore:
- '**.md'
pull_request:
branches: [ master ]
paths-ignore:
- '**.md'
env:
ver_num: "1.0.${{ github.run_number }}"

jobs:
build-linux:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Run Make
run: "VERSION=${{ env.ver_num }} make"

0 comments on commit d0efea0

Please sign in to comment.