-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fb73473
commit 2ac89be
Showing
7 changed files
with
354 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: Deploy documentation | ||
|
||
on: | ||
# Trigger the workflow every time you push to the `main` branch | ||
# Using a different branch name? Replace `main` with your branch’s name | ||
push: | ||
# Allows you to run this workflow manually from the Actions tab on GitHub. | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: docs | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install pnpm | ||
uses: pnpm/action-setup@v4 | ||
with: | ||
package_json_file: docs/package.json | ||
- name: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 22 | ||
cache: "pnpm" | ||
cache-dependency-path: docs/pnpm-lock.yaml | ||
- name: Install dependencies | ||
run: pnpm install | ||
- name: Build | ||
run: pnpm build | ||
- name: Deploy to SFTP | ||
if: github.ref == 'refs/heads/develop' | ||
env: | ||
SFTP_HOST: ${{ secrets.SFTP_HOST }} | ||
SFTP_USERNAME: ${{ secrets.SFTP_USERNAME }} | ||
SFTP_KEY: ${{ secrets.SFTP_KEY }} | ||
SFTP_KNOWN_HOSTS: ${{secrets.SFTP_KNOWN_HOSTS}} | ||
run: | | ||
echo "$SFTP_KEY" > sftp_key | ||
chmod 600 sftp_key | ||
echo "$SFTP_KNOWN_HOSTS" > known_hosts | ||
chmod 600 known_hosts | ||
rsync -avz --delete -e "ssh -i sftp_key -o UserKnownHostsFile=known_hosts" dist/ $SFTP_USERNAME@$SFTP_HOST:/var/www/butterfly.linwood | ||
web: | ||
runs-on: ubuntu-24.04 | ||
defaults: | ||
run: | ||
working-directory: app | ||
steps: | ||
- name: ⬆️ Checkout | ||
uses: actions/checkout@v4 | ||
- uses: subosito/[email protected] | ||
with: | ||
flutter-version-file: app/pubspec.yaml | ||
- name: Install dependencies | ||
run: | | ||
flutter pub get | ||
- name: Set flavor | ||
if: github.ref != 'refs/heads/main' | ||
run: | | ||
echo "SETONIX_FLAVOR=nightly" >> $GITHUB_ENV | ||
echo "WEB_DIR=preview" >> $GITHUB_ENV | ||
- name: Set flavor | ||
if: github.ref == 'refs/heads/main' | ||
run: | | ||
echo "SETONIX_FLAVOR=stable" >> $GITHUB_ENV | ||
echo "WEB_DIR=web" >> $GITHUB_ENV | ||
- name: Build | ||
run: flutter build web --wasm --release --no-web-resources-cdn --dart-define=flavor=$SETONIX_FLAVOR | ||
- name: Deploy to SFTP | ||
if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main' | ||
env: | ||
SFTP_HOST: ${{ secrets.SFTP_HOST }} | ||
SFTP_USERNAME: ${{ secrets.SFTP_USERNAME }} | ||
SFTP_KEY: ${{ secrets.SFTP_KEY }} | ||
SFTP_KNOWN_HOSTS: ${{secrets.SFTP_KNOWN_HOSTS}} | ||
run: | | ||
echo "$SFTP_KEY" > sftp_key | ||
chmod 600 sftp_key | ||
echo "$SFTP_KNOWN_HOSTS" > known_hosts | ||
chmod 600 known_hosts | ||
rsync -avz --delete -e "ssh -i sftp_key -o UserKnownHostsFile=known_hosts" build/web/ $SFTP_USERNAME@$SFTP_HOST:/var/www/$WEB_DIR.butterfly.linwood |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,17 +15,17 @@ | |
"@astrojs/starlight": "^0.28.3", | ||
"@phosphor-icons/react": "^2.1.7", | ||
"@types/react": "^18.3.11", | ||
"@types/react-dom": "^18.3.0", | ||
"astro": "^4.16.0", | ||
"@types/react-dom": "^18.3.1", | ||
"astro": "^4.16.2", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"remark-gemoji": "^8.0.0", | ||
"remark-heading-id": "^1.0.1", | ||
"sharp": "^0.33.5", | ||
"typescript": "^5.6.3" | ||
}, | ||
"packageManager": "[email protected].0", | ||
"packageManager": "[email protected].1", | ||
"devDependencies": { | ||
"sass": "^1.79.4" | ||
"sass": "^1.79.5" | ||
} | ||
} |
Oops, something went wrong.