This commit is contained in:
parent
2a0483b9cd
commit
45e164ce42
1 changed files with 16 additions and 6 deletions
|
@ -3,18 +3,28 @@ jobs:
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
image: alpine:edge
|
image: python:3.12-slim
|
||||||
steps:
|
steps:
|
||||||
- run: apk add npm
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Install uv
|
- name: Install uv
|
||||||
run: apk add uv
|
run: |
|
||||||
|
apt-get update && \
|
||||||
|
apt-get install -y curl ca-certificates && \
|
||||||
|
curl -LsSf https://astral.sh/uv/install.sh | bash
|
||||||
|
- name: Install git
|
||||||
|
run: |
|
||||||
|
apt-get update && apt-get install -y git
|
||||||
|
- name: Install node
|
||||||
|
run: |
|
||||||
|
apt-get update && apt-get install -y curl gnupg ca-certificates && \
|
||||||
|
curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
|
||||||
|
apt-get install -y nodejs
|
||||||
|
- uses: actions/checkout@v4
|
||||||
# - name: Configure hut
|
# - name: Configure hut
|
||||||
# run: |
|
# run: |
|
||||||
# apk add hut
|
# apk add hut
|
||||||
# echo ${{ secrets.HUT }} | hut init
|
# echo ${{ secrets.HUT }} | hut init
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
cd ficd.sh
|
cd $GITHUB_WORKSPACE
|
||||||
uv run --with "git+https://git.ficd.sh/ficd/ficd.sh" zona build --output public
|
uv run --with "https://git.ficd.sh/ficd/zona.git" zona build --output public
|
||||||
ls public
|
ls public
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue