2024-09-17 21:38:04 +02:00
|
|
|
name: release
|
2024-09-17 22:09:06 +02:00
|
|
|
on: workflow_dispatch
|
2024-09-17 21:38:04 +02:00
|
|
|
|
2024-09-17 21:59:33 +02:00
|
|
|
env:
|
|
|
|
PORT: 3081
|
|
|
|
|
2024-09-17 21:38:04 +02:00
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
name: release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
2024-09-17 21:48:34 +02:00
|
|
|
- uses: taiki-e/install-action@just
|
2024-09-17 21:59:33 +02:00
|
|
|
- run: cd axum_server && just prod &
|
|
|
|
- uses: iFaxity/wait-on-action@v1.2.1
|
|
|
|
with:
|
|
|
|
resource: http://localhost:3001
|
|
|
|
- run: cd axum_server && just ssg
|
2024-09-17 21:38:04 +02:00
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: dist
|
|
|
|
path: axum_server/dist/
|
|
|
|
retention-days: 10
|
|
|
|
|
|
|
|
|