Skip to content

Merge pull request #32 from Peefy/chore-update-kcl-go-version #5

Merge pull request #32 from Peefy/chore-update-kcl-go-version

Merge pull request #32 from Peefy/chore-update-kcl-go-version #5

Workflow file for this run

name: release
on:
push:
branches:
- "main"
tags:
- "v*"
permissions:
contents: write
jobs:
test:
name: Build and release
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
submodules: "true"
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: kcllang/kcl-playground
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}