Skip to content

Commit

Permalink
Add job to list changes
Browse files Browse the repository at this point in the history
  • Loading branch information
iainelder committed Jul 1, 2024
1 parent fd6f486 commit 59ab53f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test_changes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test Installer
on:
push:
workflow_dispatch:

jobs:
list_changes:
name: List changed installers
runs-on: ubuntu-latest
outputs:
installers: ${{ steps.list_step.outputs.installers}}
steps:
- name: Check out code
uses: actions/checkout@v4

- name: Get changed installer files
id: changed-installers
uses: tj-actions/changed-files@v44
with:
files: programs/**

- name: Debug changes
run: |
echo ${{ steps.changed-installers.outputs.all_changed_files }}

0 comments on commit 59ab53f

Please sign in to comment.