mirror of
https://github.com/Alee14/shiftos-website.git
synced 2025-01-22 11:41:46 -05:00
Fixed issues
This commit is contained in:
parent
a2561aa012
commit
8ba31970c4
1 changed files with 8 additions and 34 deletions
42
.github/workflows/astro.yml
vendored
42
.github/workflows/astro.yml
vendored
|
@ -35,43 +35,17 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Detect package manager
|
- name: Setup Bun
|
||||||
id: detect-package-manager
|
uses: oven-sh/setup-bun@v2
|
||||||
run: |
|
- name: Install dependencies
|
||||||
if [ -f "${{ github.workspace }}/yarn.lock" ]; then
|
run: bun install
|
||||||
echo "manager=yarn" >> $GITHUB_OUTPUT
|
working-directory: ${{ env.BUILD_PATH }}
|
||||||
echo "command=install" >> $GITHUB_OUTPUT
|
- name: Build with Astro
|
||||||
echo "runner=yarn" >> $GITHUB_OUTPUT
|
run: bun run build
|
||||||
echo "lockfile=yarn.lock" >> $GITHUB_OUTPUT
|
working-directory: ${{ env.BUILD_PATH }}
|
||||||
exit 0
|
|
||||||
elif [ -f "${{ github.workspace }}/package.json" ]; then
|
|
||||||
echo "manager=npm" >> $GITHUB_OUTPUT
|
|
||||||
echo "command=ci" >> $GITHUB_OUTPUT
|
|
||||||
echo "runner=npx --no-install" >> $GITHUB_OUTPUT
|
|
||||||
echo "lockfile=package-lock.json" >> $GITHUB_OUTPUT
|
|
||||||
exit 0
|
|
||||||
else
|
|
||||||
echo "Unable to determine package manager"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
- name: Setup Node
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: "20"
|
|
||||||
cache: ${{ steps.detect-package-manager.outputs.manager }}
|
|
||||||
cache-dependency-path: ${{ env.BUILD_PATH }}/${{ steps.detect-package-manager.outputs.lockfile }}
|
|
||||||
- name: Setup Pages
|
- name: Setup Pages
|
||||||
id: pages
|
id: pages
|
||||||
uses: actions/configure-pages@v5
|
uses: actions/configure-pages@v5
|
||||||
- name: Install dependencies
|
|
||||||
run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }}
|
|
||||||
working-directory: ${{ env.BUILD_PATH }}
|
|
||||||
- name: Build with Astro
|
|
||||||
run: |
|
|
||||||
${{ steps.detect-package-manager.outputs.runner }} astro build \
|
|
||||||
--site "${{ steps.pages.outputs.origin }}" \
|
|
||||||
--base "${{ steps.pages.outputs.base_path }}"
|
|
||||||
working-directory: ${{ env.BUILD_PATH }}
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-pages-artifact@v3
|
uses: actions/upload-pages-artifact@v3
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue