adding dev container config #5
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: Dev Container Build and Push Image | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "main" | |
tags: | |
- "v*.*.*" | |
pull_request: | |
branches: [main] | |
jobs: | |
build-and-push: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- [ubuntu-latest] | |
- [macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- | |
name: Checkout | |
id: checkout | |
uses: actions/checkout@v1 | |
- name: Setup Colima (Docker alternative for macOS) | |
if: runner.os == 'macOS' | |
run: | | |
brew install colima docker | |
colima start --cpu 2 --memory 4 | |
# Wait for Docker to be ready | |
while ! docker info >/dev/null 2>&1; do sleep 1; done | |
- | |
name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ secrets.REGISTRY_USER }} | |
password: ${{ secrets.REGISTRY_TOKEN }} | |
- | |
name: Build Dev Container Image | |
uses: devcontainers/[email protected] | |
with: | |
subFolder: .github | |
imageName: ghcr.io/${{ github.repository }} | |
cacheFrom: ghcr.io/${{ github.repository }} | |
push: never | |
- name: Test Container Image | |
run: | | |
docker run --rm ghcr.io/${{ github.repository }} /bin/bash -c "git clone -b devContainers https://github.com/drifter089/pypsa-earth.git && cd pypsa-earth && bash .github/.devcontainer/test.sh" | |
- name: Push Container Image | |
if: ${{ success() }} | |
run: | | |
docker push ghcr.io/${{ github.repository }} |