Skip to content

Commit

Permalink
chore: release kcllang/kcl-go docker image (#153)
Browse files Browse the repository at this point in the history
* chore: add docker release workflow

* fix dockerfile
  • Loading branch information
amyXia1994 authored Sep 11, 2023
1 parent 7a9ba4f commit 96d9ac7
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
37 changes: 37 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: release
on:
push:
branches:
- "main"
tags:
- "v*"
permissions:
contents: write
jobs:
release:
name: Build and release
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
# kcl-go build
- name: Build kcl-go
run: GOOS=linux GOARCH=amd64 go build ./cmds/kcl-go
shell: bash
- 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-go
- 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 }}
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ FROM kcllang/kcl

WORKDIR /app

COPY --from=builder /app/kcl-go .
RUN mkdir /app/bin
COPY --from=builder /app/kcl-go ./bin/

ENV PATH="/app/bin:${PATH}"
ENV LANG=en_US.utf8
Expand Down

0 comments on commit 96d9ac7

Please sign in to comment.