chore(deps): update dependency workleap.dotnet.codingstandards to 1.1.10 #14
Workflow file for this run
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: Publish | |
| on: | |
| push: | |
| tags: ["*.*.*"] | |
| jobs: | |
| main: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Docker login | |
| uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3 | |
| with: | |
| username: ${{ secrets.WORKLEAP_DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.WORKLEAP_DOCKERHUB_TOKEN }} | |
| - name: Docker metadata | |
| id: meta | |
| uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5 | |
| with: | |
| images: workleap/azure-cli-credentials-proxy | |
| - name: Docker build and push | |
| uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6 | |
| with: | |
| context: . | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| linearb-release: | |
| needs: [main] | |
| uses: workleap/wl-reusable-workflows/.github/workflows/linearb-deployment.yml@main | |
| with: | |
| environment: "release" | |
| permissions: | |
| id-token: write | |
| contents: read |