Bump Microsoft.VisualStudio.Azure.Containers.Tools.Targets from 1.18.1 to 1.19.5 #150
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- '*' | |
paths-ignore: | |
- README.md | |
- LICENSE | |
- CHANGELOG.md | |
- docs/** | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- README.md | |
- LICENSE | |
- CHANGELOG.md | |
- docs/** | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
env: | |
buildConfiguration: 'Release' | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
IMAGE_NAME: 'azure-devops-cleaner' | |
DOCKER_BUILDKIT: 1 # Enable Docker BuildKit | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Required for GitVersion | |
- name: Install GitVersion | |
uses: gittools/actions/gitversion/setup@v0 | |
with: | |
versionSpec: '5.x' | |
- name: Determine Version | |
uses: gittools/actions/gitversion/execute@v0 | |
with: | |
useConfigFile: true | |
- name: Test | |
run: dotnet test -c $buildConfiguration --verbosity normal --collect "Code coverage" | |
- name: Publish | |
run: | | |
dotnet publish \ | |
$GITHUB_WORKSPACE/Tingle.AzdoCleaner/Tingle.AzdoCleaner.csproj \ | |
-c $buildConfiguration \ | |
-o $GITHUB_WORKSPACE/drop/Tingle.AzdoCleaner | |
- name: Replace tokens | |
uses: cschleiden/replace-tokens@v1 | |
with: | |
files: '["${{ github.workspace }}/main.bicep"]' | |
- name: Build bicep file | |
uses: azure/CLI@v1 | |
with: | |
azcliversion: 2.45.0 # somehow 2.46.0 is failing | |
inlineScript: | | |
cp $GITHUB_WORKSPACE/main.bicep $GITHUB_WORKSPACE/drop/main.bicep | |
az bicep build --file main.bicep --outfile $GITHUB_WORKSPACE/drop/main.json | |
- name: Pull Docker base image & warm Docker cache | |
run: docker pull "ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:latest" | |
- name: Build image | |
run: | | |
docker build \ | |
-f Tingle.AzdoCleaner/Dockerfile.CI \ | |
--label com.github.image.run.id=$GITHUB_RUN_ID \ | |
--label com.github.image.run.number=$GITHUB_RUN_NUMBER \ | |
--label com.github.image.job.id=$GITHUB_JOB \ | |
--label com.github.image.source.sha=$GITHUB_SHA \ | |
--label com.github.image.source.branch=$GITHUB_REF \ | |
-t "ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:latest" \ | |
-t "ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:$GITVERSION_SHORTSHA" \ | |
-t "ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:$GITVERSION_NUGETVERSIONV2" \ | |
-t "ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:$GITVERSION_MAJOR.$GITVERSION_MINOR" \ | |
-t "ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:$GITVERSION_MAJOR" \ | |
--cache-from ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:latest \ | |
--build-arg BUILDKIT_INLINE_CACHE=1 \ | |
$GITHUB_WORKSPACE/drop/Tingle.AzdoCleaner | |
- name: Log into registry | |
if: ${{ (github.ref == 'refs/heads/main') || (!startsWith(github.ref, 'refs/pull')) || startsWith(github.ref, 'refs/tags') }} | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin | |
- name: Push image (latest, ShortSha) | |
if: ${{ (github.ref == 'refs/heads/main') || startsWith(github.ref, 'refs/tags') }} | |
run: | | |
docker push "ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:latest" | |
docker push "ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:$GITVERSION_SHORTSHA" | |
- name: Push image (NuGetVersionV2) | |
if: "!startsWith(github.ref, 'refs/pull')" | |
run: docker push "ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:$GITVERSION_NUGETVERSIONV2" | |
- name: Push image (major, minor) | |
if: startsWith(github.ref, 'refs/tags') | |
run: | | |
docker push "ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:$GITVERSION_MAJOR.$GITVERSION_MINOR" | |
docker push "ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME:$GITVERSION_MAJOR" | |
- name: Publish Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ${{ github.workspace }}/drop/* | |
name: drop | |
- name: Upload Release | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: > | |
${{ github.workspace }}/drop/main.bicep, | |
${{ github.workspace }}/drop/main.json | |
token: ${{ secrets.GITHUB_TOKEN }} | |
draft: true | |
allowUpdates: true |