Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

fix: add docker_entrypoint.sh #27

fix: add docker_entrypoint.sh

fix: add docker_entrypoint.sh #27

Workflow file for this run

name: Build Service
on:
workflow_dispatch:
pull_request:
paths-ignore: ["*.md"]
branches: ["main", "master"]
push:
paths-ignore: ["*.md"]
branches: ["main", "master"]
jobs:
BuildPackage:
runs-on: ubuntu-latest
steps:
- name: Prepare StartOS SDK
uses: Start9Labs/sdk@v1
- name: Checkout services repository
uses: actions/checkout@v4
- name: Build the service package
id: build
run: |
git submodule update --init --recursive
start-sdk init
make
PACKAGE_ID=$(yq -oy ".id" manifest.*)
echo "package_id=$PACKAGE_ID" >> $GITHUB_ENV
shell: bash
- name: Upload .s9pk
uses: actions/upload-artifact@v4
with:
name: ${{ env.package_id }}.s9pk
path: ./${{ env.package_id }}.s9pk