diff --git a/.github/workflows/build_beta.yml b/.github/workflows/build_next.yml similarity index 83% rename from .github/workflows/build_beta.yml rename to .github/workflows/build_next.yml index 11e746a23..5daa4f2be 100644 --- a/.github/workflows/build_beta.yml +++ b/.github/workflows/build_next.yml @@ -1,4 +1,4 @@ -name: Build Web - BETA +name: Build Web - NEXT on: push: @@ -6,7 +6,7 @@ on: - master jobs: build-current: - name: Build Web - BETA + name: Build Web - NEXT env: commit_secret: ${{secrets.commit_secret}} commit_email: ${{secrets.commit_email}} @@ -21,7 +21,7 @@ jobs: - name: Setup Flutter run: | flutter doctor -v - cp pubspec.beta.yaml pubspec.yaml + cp pubspec.next.yaml pubspec.yaml rm pubspec.lock flutter pub get flutter config --enable-web @@ -45,9 +45,9 @@ jobs: cd invoiceninja git checkout v5-develop - cp ../build/web/main.dart.js ./public/main.beta.dart.js - #cp ../build/web/main.dart.js.map ./public/main.beta.dart.js.map + cp ../build/web/main.dart.js ./public/main.next.dart.js + #cp ../build/web/main.dart.js.map ./public/main.next.dart.js.map git add . - git commit -m 'New admin portal - Beta [hosted]' + git commit -m 'New admin portal - Next [hosted]' git push cd .. \ No newline at end of file diff --git a/pubspec.beta.yaml b/pubspec.next.yaml similarity index 100% rename from pubspec.beta.yaml rename to pubspec.next.yaml