Update ip and braces dependency in dagster-cloud-cicd-action (#27) #196
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: Multiple Locations Example | |
on: push | |
jobs: | |
multiple-locations-example: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
# Configure access to ECR, for this example | |
# If you are using another registry, your steps may differ | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: us-west-2 | |
- name: Login to ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Cache Docker builds | |
uses: satackey/[email protected] | |
continue-on-error: true | |
- name: Run Dagster Cloud CI/CD action | |
# Here, use `uses: dagster-io/dagster-cloud-cicd-action/deploy@{version}` | |
# e.g. `uses: dagster-io/dagster-cloud-cicd-action/[email protected]` | |
uses: ./deploy | |
with: | |
location-file: ./example/multiple-locations/locations.yaml | |
dagit-url: https://elementl.dogfood.dagster.cloud/dev | |
api-token: ${{ secrets.DAGSTER_AGENT_TOKEN }} |