This repository has been archived by the owner on Nov 29, 2024. It is now read-only.
test(gha-pr): test run #4
Workflow file for this run
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
name: Test on PR github-actions-build-push-containers | ||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
jobs: | ||
test_action: | ||
runs-on: ubuntu-latest | ||
- name: Test GHCR | ||
uses: ./ | ||
with: | ||
image_name: "test-github-actions-build-push-containers" | ||
registry: "ghcr.io" | ||
context: "./tests/" | ||
- name: Verify GHCR Build | ||
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 | ||
# - name: Use my action for ECR | ||
# uses: your-username/[email protected] | ||
# with: | ||
# aws_access_key: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
# aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
# image_name: "test-image" | ||
# registry: "your-account-id.dkr.ecr.your-region.amazonaws.com" | ||
# # and other necessary inputs | ||
# - name: Verify ECR | ||
# run: | | ||
# $(aws ecr get-login --region your-region --no-include-email) | ||
# docker pull your-account-id.dkr.ecr.your-region.amazonaws.com/test-image:latest | ||
# docker run your-account-id.dkr.ecr.your-region.amazonaws.com/test-image:latest | ||
# # Test Docker.io | ||
# # ... similar structure ... | ||