Skip to content

Commit

Permalink
Merge pull request #1 from artellectual/insterra/packs/13/1707794396
Browse files Browse the repository at this point in the history
Deployment configuration base-astro-static for zacksiri-dev
  • Loading branch information
zacksiri committed Feb 13, 2024
2 parents 3c458b7 + e55a9bd commit 4ab1180
Show file tree
Hide file tree
Showing 2 changed files with 130 additions and 0 deletions.
79 changes: 79 additions & 0 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: 'Deployment'

on:
push:
branches:
- main
- master
- develop

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
fetch-depth: 0

- name: Setup Pakman
uses: upmaru/pakman@v8
with:
alpine: v3.19

- name: Bootstrap Configuration
run: |
pakman bootstrap
shell: alpine.sh {0}
env:
ABUILD_PRIVATE_KEY: ${{secrets.ABUILD_PRIVATE_KEY}}
ABUILD_PUBLIC_KEY: ${{secrets.ABUILD_PUBLIC_KEY}}

- name: 'Build Package'
run: |
cd "$GITHUB_WORKSPACE"/.apk/"$GITHUB_REPOSITORY" || exit
abuild snapshot
abuild -r
shell: alpine.sh {0}

- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: ${{ runner.arch }}
path: /home/runner/packages

deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- uses: actions/download-artifact@v3
with:
path: /home/runner/artifacts

- name: Setup Pakman
uses: upmaru/pakman@v8
with:
alpine: v3.19

- name: Merge Artifact
run: |
cp -R /home/runner/artifacts/X64/. /home/runner/packages/
sudo zip -r /home/runner/packages.zip "$HOME"/packages
shell: alpine.sh {0}

- name: Push
run: pakman push
shell: alpine.sh {0}
env:
WORKFLOW_REF: ${{ github.ref }}
WORKFLOW_SHA: ${{ github.sha }}
INSTELLAR_ENDPOINT: https://opsmaru.com
INSTELLAR_PACKAGE_TOKEN: ${{secrets.INSTELLAR_PACKAGE_TOKEN}}
INSTELLAR_AUTH_TOKEN: ${{secrets.INSTELLAR_AUTH_TOKEN}}
51 changes: 51 additions & 0 deletions instellar.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
dependencies:
build:
- nodejs-current
- npm
runtime:
- caddy
- bash
- curl
- s6
- jq
- ca-certificates
- zacksiri-dev-openrc

stack: alpine/3.19

build:
command: |
npm install
npm run build
destinations:
- dist
- Caddyfile

run:
name: zacksiri-dev
services:
- binary: caddy
name: web
path: /usr/sbin
start:
call: run --config /var/lib/zacksiri-dev/Caddyfile

hook:
post-deinstall: |
rc-service zacksiri-dev stop
rc-update del zacksiri-dev
post-install: |
rc-update add zacksiri-dev
post-upgrade: |
rc-service zacksiri-dev start
pre-upgrade: |
rc-service zacksiri-dev stop
kits:
- description: static site server
main: true
name: web
ports:
- main: true
name: web
target: 3000

0 comments on commit 4ab1180

Please sign in to comment.