diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml new file mode 100644 index 0000000..dac7c71 --- /dev/null +++ b/.github/workflows/deploy-production.yml @@ -0,0 +1,18 @@ +name: Deploy Staging + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-latest + name: Deploy + steps: + - uses: actions/checkout@v3 + - name: Deploy app + uses: cloudflare/wrangler-action@v3 + with: + apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} + command: deploy --env production diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml new file mode 100644 index 0000000..0f275e9 --- /dev/null +++ b/.github/workflows/deploy-staging.yml @@ -0,0 +1,18 @@ +name: Deploy Staging + +on: + push: + branches: + - staging + +jobs: + deploy: + runs-on: ubuntu-latest + name: Deploy + steps: + - uses: actions/checkout@v3 + - name: Deploy app + uses: cloudflare/wrangler-action@v3 + with: + apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} + command: deploy --env staging diff --git a/src/version/storage/mobile-version.json b/src/version/storage/mobile-version.json index be76777..4e0a619 100644 --- a/src/version/storage/mobile-version.json +++ b/src/version/storage/mobile-version.json @@ -1,10 +1,10 @@ { "ios": { - "required": "1.0.0.180", - "recommended": "1.0.0.190" + "required": "1.0.0.201", + "recommended": "1.0.0.202" }, "android": { - "required": "1.0.1.183", - "recommended": "1.0.1.190" + "required": "1.0.0", + "recommended": "1.0.0" } } \ No newline at end of file