This repository was archived by the owner on Jun 19, 2025. It is now read-only.
fix(cancellation): adding failure processing (#228) #145
This file contains hidden or 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: Development Docker Images | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Log in to registry | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Setting up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.8 | |
| - name: Build and Push Dev Container | |
| run: ci/build_docker_image.sh -i aqueductcore-dev -p true -t ${{ github.sha }} | |
| - name: Build and Push Dev Container SSH Server for Azure | |
| run: ci/build_docker_image.sh -i aqueductcore-dev-azure -p true -t ${{ github.sha }} -d containers/release-azure/Dockerfile |