Skip to content

Commit

Permalink
Update docker-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pilgrimaz authored Aug 19, 2024
1 parent cc1c507 commit f866882
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,20 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4


- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v44
# To compare changes between the current commit and the last pushed remote commit set `since_last_remote_commit: true`. e.g
with:
# since_last_remote_commit: true
files_ignore: .github/**
files_ignore: .github/workflows/docker-publish.yml
- name: List all changed files
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
for file in ${ALL_CHANGED_FILES}; do
CHANGEFILE=$(echo ${file}|awk -F"/" '{print $2}')
echo "${CHANGEFILE} was changed"
echo "${CHANGEFILE} was changed"
done
Expand Down

0 comments on commit f866882

Please sign in to comment.