about summary refs log tree commit diff
path: root/.github/workflows/build-and-push-bskyweb-aws.yaml
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-05-04 16:33:10 -0700
committerGitHub <noreply@github.com>2024-05-04 16:33:10 -0700
commit4862bc2ba85a91d885b4bd116f25b6533ab568d0 (patch)
treebfc82f2cbb27ca6e81f3858dd61d1a8e26818341 /.github/workflows/build-and-push-bskyweb-aws.yaml
parenteb55bdf172d8b3f405fb6e7d8235aaf7be393bd2 (diff)
downloadvoidsky-4862bc2ba85a91d885b4bd116f25b6533ab568d0.tar.zst
add bundle identifiers to app-info (#3861)
* add bundle identifiers to `app-info`

* add them to the `.env.example`

* add environment variables for docker build

* add environment variables for native builds and bundles

* also include the hour in bundle date

* organize app info better in settings
Diffstat (limited to '.github/workflows/build-and-push-bskyweb-aws.yaml')
-rw-r--r--.github/workflows/build-and-push-bskyweb-aws.yaml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build-and-push-bskyweb-aws.yaml b/.github/workflows/build-and-push-bskyweb-aws.yaml
index 3f6070579..c445ca2d5 100644
--- a/.github/workflows/build-and-push-bskyweb-aws.yaml
+++ b/.github/workflows/build-and-push-bskyweb-aws.yaml
@@ -1,9 +1,9 @@
 name: build-and-push-bskyweb-aws
 on:
+  workflow_dispatch:
   push:
     branches:
       - main
-      - 3p-moderators
 
 env:
   REGISTRY: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_REGISTRY }}
@@ -54,3 +54,6 @@ jobs:
           labels: ${{ steps.meta.outputs.labels }}
           cache-from: type=gha
           cache-to: type=gha,mode=max
+        env:
+          EXPO_PUBLIC_BUNDLE_IDENTIFIER: $(git rev-parse --short HEAD)
+          EXPO_PUBLIC_BUNDLE_DATE: $(date -u +"%y%m%d%H")