Skip to content

Update android.yml #977

Update android.yml

Update android.yml #977

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: |
tag_hash=$(git rev-parse --short refs/tags/temp)
git log $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