Bluesky app fork with some witchin' additions 💫

update ogcard workflow to build and push new ECS images on PR creation

+6 -1
+6 -1
.github/workflows/build-and-push-ogcard-aws.yaml
··· 1 1 name: build-and-push-ogcard-aws 2 2 on: 3 3 workflow_dispatch: 4 + pull_request: 5 + paths: 6 + - 'bskyogcard/**' 7 + - 'Dockerfile.bskyogcard' 8 + - '.github/workflows/build-and-push-ogcard-aws.yaml' 4 9 5 10 env: 6 11 REGISTRY: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_REGISTRY }} ··· 45 50 uses: docker/build-push-action@v4 46 51 with: 47 52 context: . 48 - push: ${{ github.event_name != 'pull_request' }} 53 + push: true 49 54 file: ./Dockerfile.bskyogcard 50 55 tags: ${{ steps.meta.outputs.tags }} 51 56 labels: ${{ steps.meta.outputs.labels }}