Skip to content

Commit

Permalink
add reusable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbrant3 committed Feb 23, 2024
1 parent 269bb6a commit f058c7f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/export_reusable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Export Reusable

on:
workflow_call:
inputs:
working-directory:
type: string
required: true

jobs:
export:

runs-on: ubuntu-latest
steps:
- name: Clone Repo
uses: actions/checkout@v3

- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: LJM_CONSTANTS
path: ${{github.workspace}}/LabJack/*

0 comments on commit f058c7f

Please sign in to comment.