-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,19 +8,24 @@ jobs: | |
test_action: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Test GHCR | ||
uses: ./ | ||
with: | ||
image_name: "test-github-actions-build-push-containers" | ||
registry: "ghcr.io" | ||
context: "./tests/" | ||
context: "./test-directory/tests/" | ||
target_directory: test-directory | ||
|
||
- name: Verify GHCR | ||
run: | | ||
docker pull ghcr.io/${{ github.repository }}/test-github-actions-build-push-containers:latest | ||
docker run ghcr.io/${{ github.repository }}/test-github-actions-build-push-containers:latest | ||
# # Test ECR | ||
# # Test ECR | ||
# - name: Use my action for ECR | ||
# uses: your-username/[email protected] | ||
# with: | ||
|
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