More Github actions fixes

This commit is contained in:
Inex Code 2020-10-07 21:13:02 +00:00
parent 2e7bb4acb4
commit d00600ae8a
1 changed files with 5 additions and 3 deletions

View File

@ -70,6 +70,9 @@ jobs:
- name: Build web release - name: Build web release
run: flutter build web --release --verbose run: flutter build web --release --verbose
- name: Add CNAME
run: cd build/web/ && echo "chat.inex.dev" > CNAME && cd ../..
- name: Deploy to GitHub Pages - name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2 uses: crazy-max/ghaction-github-pages@v2
with: with:
@ -147,12 +150,11 @@ jobs:
- name: Build release package - name: Build release package
run: | run: |
flutter build linux --release flutter build linux --release
tar czf build/FurryChat-Linux.tar.gz build/linux/release/bundle/
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v2
with: with:
name: FurryChat-Linux.tar.gz name: FurryChat-Linux
path: build/FurryChat-Linux.tar.gz path: build/linux/release/bundle/
build-windows: build-windows:
runs-on: windows-latest runs-on: windows-latest