fourth commit #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Get list of changed files | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
job: | |
name: List changed files in tag | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.ref_name }} | |
fetch-depth: 0 | |
- uses: tj-actions/changed-files@v44 | |
id: changed-files | |
- run: |- | |
echo "List all the files that have changed: $ALL_CHANGED_FILES" | |
env: | |
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} |