Bump container versions (#2851) #57
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
# Copyright (c) .NET Foundation and Contributors | |
# See LICENSE file in the project root for full license information. | |
name: Build Dev Container for all platforms | |
env: | |
GCR_IMAGE: ghcr.io/nanoframework/dev-container-all | |
GCR_FILE: .devcontainer/sources/Dockerfile.All | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**Dockerfile.All' | |
workflow_dispatch: | |
jobs: | |
build: | |
if: ${{ vars.PUBLISH_DOCKER_IMAGE == 'true' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Get container version | |
run: | | |
$dockerfileContent = Get-Content(".devcontainer/Dockerfile.All") | |
$dockerfileContent -match '(?<=\:)(?:[v]\d+.\d+)' | |
$containerVersion = $Matches[0].ToString() | |
echo "GCR_VERSION=$containerVersion" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append | |
shell: pwsh | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.CONTAINER_BUILD_TOKEN }} | |
- name: Build and Push Docker Image | |
uses: docker/build-push-action@v4 | |
with: | |
file: ${{ env.GCR_FILE }} | |
push: true # Will only build if this is not here | |
tags: | | |
${{ env.GCR_IMAGE }}:${{ env.GCR_VERSION }} | |
${{ env.GCR_IMAGE }}:latest |