Skip to content

Update android.yml #976

Update android.yml

Update android.yml #976

Workflow file for this run

name: Build
on:
push:
branches: [ test ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Generate release notes
run: |
git fetch origin tag temp
git fetch origin tag test
- name: Generate release notes 2
run: |
echo "tag_hash=$(git rev-parse --short refs/tags/temp)" >> "$GITHUB_ENV"
git log ${{ env.tag_hash }}..refs/tags/test --oneline --decorate=no > notes.txt
- name: Create release
env:
GH_TOKEN: ${{ github.token }}
run: gh release create test --draft --notes-file notes.txt --latest=false