Skip to content

Commit

Permalink
do not merge - test
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 8c9c312 commit 50f62f4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/publish_images_on_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,26 @@ on:
workflow_dispatch:

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.

- 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 }}"
caa:
uses: ./.github/workflows/caa_build_and_push_per_arch.yaml
if: github.event_name == 'foobar'
with:
registry: ghcr.io/${{ github.repository_owner }}
secrets: inherit
Expand Down

0 comments on commit 50f62f4

Please sign in to comment.