🔥 bugfix: Security Upgrade blocks allUsers
need to add tag to support allowing access publically
#701
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: "CI" | |
on: | |
workflow_dispatch: {} | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test_action: | |
name: Test Action | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v1 | |
- id: testAction | |
name: Test Action Code | |
uses: ./ | |
with: | |
name: previews-example | |
port: 3000 | |
env_vars: | | |
MESSAGE="Hello via ENV Vars" | |
gcp_service_account_key: ${{ secrets.GCP_SA_KEY }} | |
gcp_artifact_repository: joggr | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
docker_directory: ./examples/nodejs-simple | |
docker_file_name: DevDockerfile | |
docker_build_args: | | |
BUILD_VAR=foo | |
BUILD_VAR2=bar | |
- name: Test Outputs | |
run: echo "${{ steps.testAction.outputs.url }}" |