Skip to content

comment out pyenv install step for now #5

comment out pyenv install step for now

comment out pyenv install step for now #5

name: build-devcontainer
on:
workflow_dispatch:
push:
branches:
- main
# - 'feature/*'
jobs:
build:
runs-on: ubuntu-latest
env:
isMain: ${{ github.ref == 'refs/heads/main' }}
registry: docker.io
targetRepo: pypeaday/devcontainer
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v2
with:
context: .
file: devcontainer.Dockerfile
push: true
tags: ${{ env.registry }}/${{ env.targetRepo }}:latest