Skip to content

Commit

Permalink
foobar
Browse files Browse the repository at this point in the history
Signed-off-by: Wainer dos Santos Moschetta <[email protected]>
  • Loading branch information
wainersm committed Nov 23, 2023
1 parent 50f62f4 commit 24c91e9
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/publish_images_on_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,20 @@ on:
jobs:
changed_files:
runs-on: ubuntu-latest
name: Test changed-files
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # OR "2" -> To retrieve the preceding commit.
fetch-depth: 0

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v40

- name: print from event
run: |
echo "added: ${{ github.event.push.commits.*.added }}"
echo "modified: ${{ github.event.push.commits.*.modified }}"
echo "removed: ${{ github.event.push.commits.*.removed }}"
echo "added: ${{ join(github.event.push.commits.*.added, ', ') }}"
echo "modified: ${{ join(github.event.push.commits.*.modified, ', ') }}"
echo "removed: ${{ join(github.event.push.commits.*.removed, ', ') }}"
caa:
uses: ./.github/workflows/caa_build_and_push_per_arch.yaml
if: github.event_name == 'foobar'
Expand Down

0 comments on commit 24c91e9

Please sign in to comment.