Updating with new JS SDK and SpinKube deployment for Magic-8-ball #30
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: docker | |
on: | |
push: | |
branches: ["main"] | |
tags: ["v*.*.*"] | |
paths: | |
- .devcontainer/Dockerfile | |
- .github/workflows/docker.yaml | |
pull_request: | |
branches: ["main"] | |
paths: | |
- .devcontainer/Dockerfile | |
- .github/workflows/docker.yaml | |
workflow_dispatch: | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract Docker metadata | |
id: meta | |
uses: docker/[email protected] | |
with: | |
tags: | | |
type=semver,pattern={{version}} | |
type=ref,event=pr | |
type=sha,enable={{is_default_branch}},prefix={{date 'YYYYMMDD-HHmmss'}}-,suffix=,format=short | |
# this action will take features and extensions into account | |
- name: Build and Push devcontainer | |
uses: devcontainers/[email protected] | |
with: | |
cacheFrom: ghcr.io/${{ github.repository }} | |
imageName: ghcr.io/${{ github.repository }} | |
imageTag: ${{ join(steps.meta.outputs.tags) }} | |
skipContainerUserIdUpdate: true | |
platform: linux/amd64,linux/arm64 | |
runCmd: spin --version |