:feature: QD-12055 QD-10660 QD-12680 Add some sarif post-processing (… #100
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: devcontainer | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| packages: write | |
| jobs: | |
| docker: | |
| if: github.repository == 'jetbrains/qodana-cli' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: docker/login-action@v3 | |
| with: | |
| registry: registry.jetbrains.team | |
| username: ${{ secrets.SPACE_PUBLISH_USERNAME }} | |
| password: ${{ secrets.SPACE_PUBLISH_PASSWORD }} | |
| - uses: docker/setup-qemu-action@v3 | |
| - uses: docker/setup-buildx-action@v3 | |
| - uses: docker/build-push-action@v6 | |
| with: | |
| context: .devcontainer | |
| push: true | |
| tags: | | |
| registry.jetbrains.team/p/sa/public/godevcontainer:1.${{ github.run_number }} | |
| registry.jetbrains.team/p/sa/public/godevcontainer:latest |