Skip to content

Commit

Permalink
feat: initial actions file
Browse files Browse the repository at this point in the history
  • Loading branch information
lennoxlotl committed Oct 21, 2024
1 parent 3b89493 commit 706ee81
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/api.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Build api

on:
push:
branches:
- "main"

jobs:
build:
name: Build binary and push (api)
runs-on: ubuntu-22.04
strategy:
matrix:
platform: [linux/amd64, linux/arm64]
steps:
- name: Checkout repository
uses: actions/checkout@v4
# - name: Setup environment
# run: |
# echo "SHORT_COMMIT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
# echo "BRANCH_NAME=$(git branch --show-current)" >> $GITHUB_ENV
# - name: Copy binary
# run: mv target/release/api api/api
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
# - name: Login to repository
# uses: docker/login-action@v3
# with:
# registry: ${{ env.REGISTRY }}
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}
- name: Test matrix output
run: echo "$MATRIX_ENV"
env:
MATRIX_ENV: ${{ matrix }}
# - name: Build and push
# uses: docker/build-push-action@v3
# with:
# push: true
# platforms: linux/arm64
# context: apps/api
# file: apps/api/Dockerfile
# tags: docker.moonclient.dev/api:git-${{ env.BRANCH_NAME }}-${{ env.SHORT_COMMIT_SHA }}
10 changes: 10 additions & 0 deletions api/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM debian:bullseye-slim

WORKDIR /opt/api
COPY ./api .

RUN apt update && apt install -y ca-certificates
RUN chmod +x /opt/api/api

EXPOSE 8000
CMD ["/opt/api/api"]

0 comments on commit 706ee81

Please sign in to comment.