Skip to content

Commit

Permalink
fix merging issue due to render
Browse files Browse the repository at this point in the history
  • Loading branch information
yimysty committed Feb 7, 2022
1 parent 82f5f31 commit 686b487
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,11 +197,12 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Render Action Metadata
run: |
./bin/render_action_metadata Dockerfile > action.yml
- name: Build local docker image
uses: docker/build-push-action@v2
with:
context: .
file: Dockerfile
tags: ${{ needs.resolve-image-tag.outputs.tag }}
- name: Test ${{ env.TEST_NAME }} Project
uses: ./
with:
Expand All @@ -222,9 +223,12 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Render Action Metadata
run: |
./bin/render_action_metadata Dockerfile > action.yml
- name: Build local docker image
uses: docker/build-push-action@v2
with:
context: .
file: Dockerfile
tags: ${{ needs.resolve-image-tag.outputs.tag }}

- name: Test ${{ env.TEST_NAME }} Project
uses: ./
Expand Down

0 comments on commit 686b487

Please sign in to comment.