Skip to content

Commit

Permalink
last update!
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-Beslogic committed Oct 29, 2024
1 parent d884c0d commit ed7d8fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/genparker-build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ env:
ORG_GRADLE_PROJECT_RELEAF_UPLOAD_STORE_PASSWORD: ${{ secrets.RELEAF_UPLOAD_STORE_PASSWORD }}
ORG_GRADLE_PROJECT_RELEAF_UPLOAD_KEY_PASSWORD: ${{ secrets.RELEAF_UPLOAD_KEY_PASSWORD }}
RELEAF_GENPARKER_KEYS: ${{ secrets.RELEAF_GENPARKER_KEYS }}
SERVICE_ACCOUNT_JSON: ${{ secrets.SERVICE_ACCOUNT_JSON }}

jobs:
init:
Expand Down Expand Up @@ -104,7 +103,7 @@ jobs:
- uses: r0adkll/upload-google-play@v1
if: ${{ hashFiles('apps/releaf/mobile/android/app/build/outputs/bundle/release/app-release.aab') != '' }}
with:
serviceAccountJsonPlainText: ${SERVICE_ACCOUNT_JSON}
serviceAccountJsonPlainText: ${{ secrets.SERVICE_ACCOUNT_JSON }}
packageName: com.release
releaseFiles: apps/releaf/mobile/android/app/build/outputs/bundle/release/app-release.aab
track: alpha
Expand Down
2 changes: 1 addition & 1 deletion apps/releaf/mobile/src/app/box/components/Box.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const SLinearGradient = styled(LinearGradient);
const MAX_NAME_LENGTH = 7;

export function Box({ box }: { box: BoxItem }) {
console.log('a small updates #4')
console.log('a small updates #5')
const [boxHoldPosition, setBoxHoldPosition] = useState<number>(0);
const [boxPosition, setBoxPosition] = useState<number>(0);

Expand Down

0 comments on commit ed7d8fc

Please sign in to comment.