π Add waves animation in popup sheet #3
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
on: | |
push: | |
branches: | |
- testnet | |
jobs: | |
deploy_to_aeHosting: | |
runs-on: ubuntu-latest | |
name: A job to deploy file to aeHosting | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
flutter-version: '3.13.9' | |
- run: flutter --version | |
- name: Install dependencies | |
run: | | |
flutter clean | |
flutter pub get | |
- name: Check files | |
run: | | |
ls -R | |
- name: Build web app | |
run: flutter build web --web-renderer canvaskit --release | |
- name: Check files | |
run: | | |
ls -R | |
- name: Deploy to aeHosting | |
id: deploy | |
uses: archethic-foundation/[email protected] | |
with: | |
seed: ${{ secrets.ARCH_BASE_SEED }} | |
endpoint: "https://testnet.archethic.net" | |
path: "build/web" | |
sslCertificateFile: "certificate_aeweb_testnet.crt" | |
sslKey: ${{ secrets.SSL_KEY_TESTNET }} | |
keychainFundingService: "archethic-wallet-ARCHETHIC.NET" | |
keychainWebsiteService: "aeweb-AEWEB-WEBAPP" | |