Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/versions.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
IMAGE_VERSION=1.22.1
IMAGE_VERSION=1.22.2
NDK_VERSION=29.0.14206865
BAZELISK_VERSION=v1.27.0
13 changes: 7 additions & 6 deletions .github/workflows/post_merge_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,22 +140,25 @@ jobs:
runs-on: ubuntu-24.04
needs:
- green
permissions:
contents: write
steps:
- uses: actions/checkout@v3.5.0
- name: Set versions
uses: tw3lveparsecs/github-actions-set-variables@latest
with:
envFilePath: .github/versions.env
- uses: avakar/tag-and-release@v1
- uses: softprops/action-gh-release@v2
with:
tag_name: ${{ env.IMAGE_VERSION }}
body: >
**Base**: image with JDK17, Android SDK Manager ([Dockerfile](https://github.com/menny/docker_android/blob/${{ env.IMAGE_VERSION }}/android_base/Dockerfile)):<br/>
generate_release_notes: true
body: |
**Base**: image with JDK 21, Android SDK Manager ([Dockerfile](https://github.com/menny/docker_android/blob/${{ env.IMAGE_VERSION }}/android_base/Dockerfile)):<br/>
```
docker pull ghcr.io/menny/android_base:${{ env.IMAGE_VERSION }}
```<br/>
<br/>
**Android**: Base + Build Tools, Platform level 35 ([Dockerfile](https://github.com/menny/docker_android/blob/${{ env.IMAGE_VERSION }}/Dockerfile)):<br/>
**Android**: Base + Build Tools, Platform level 36 ([Dockerfile](https://github.com/menny/docker_android/blob/${{ env.IMAGE_VERSION }}/Dockerfile)):<br/>
```
docker pull ghcr.io/menny/android:${{ env.IMAGE_VERSION }}
```<br/>
Expand All @@ -179,7 +182,5 @@ jobs:
```
docker pull ghcr.io/menny/android_dev:${{ env.IMAGE_VERSION }}
```


env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}