Skip to content

Remove unsupported target platform on github actions #2

Remove unsupported target platform on github actions

Remove unsupported target platform on github actions #2

Workflow file for this run

name: Build and publish devcontainer
on:
push:
branches:
- master
jobs:
build_dev_container:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Login to Github Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: python
file: python/Dockerfile-312
push: true
tags: |
ghcr.io/${{ github.repository }}/python:latest
ghcr.io/${{ github.repository }}/python:${{ github.sha }}