Merge pull request #310 from scala-steward/update/scalafmt-core-3.10.5 #232
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: Release | |
| on: | |
| push: | |
| branches: [master] | |
| tags: ["*"] | |
| jobs: | |
| build-images: | |
| name: Build and Push Images | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Log in to Docker Hub | |
| uses: docker/login-action@v1 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USER }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - uses: coursier/setup-action@v1 | |
| with: | |
| jvm: 'temurin:1.17.0.3' | |
| - uses: coursier/cache-action@v6 | |
| - run: sbt docker:publishLocal | |
| - run: docker tag advancedtelematic/director-v2:$GITHUB_SHA uptane/director-v2:$GITHUB_SHA | |
| - run: docker push uptane/director-v2:$GITHUB_SHA |