Add GITHUB_TOKEN to release workflow and permissions to write releases #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create release | |
on: | |
push: | |
tags: | |
- 'v**' | |
permissions: | |
contents: write | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
check-versions: | |
runs-on: ubuntu-latest | |
outputs: | |
TAG_NAME: ${{ env.TAG_NAME }} | |
VERSION: ${{ steps.get_version.outputs.version }} | |
steps: | |
- name: Wait for build workflow to finish | |
uses: lewagon/[email protected] | |
with: | |
ref: ${{ github.ref }} | |
running-workflow-name: "Build" | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
wait-interval: 10 | |
# Download artifacts from build workflow | |
- name: Download workflow artifacts | |
uses: dawidd6/action-download-artifact@v6 | |
with: | |
workflow: build.yml | |
commit: ${{ github.sha }} | |
path: '.' | |
# Get publish.gradle version | |
- name: Get publish.gradle version | |
id: get-version | |
run: | | |
echo "version=$(cat version/version.txt)" >> $GITHUB_OUTPUT | |
echo "expectedTagName=v$(cat version/version.txt)" >> $GITHUB_OUTPUT | |
prepare-release: | |
runs-on: ubuntu-latest | |
needs: check-versions | |
steps: | |
# Download API, docs, and version.txt | |
- name: Download workflow artifacts | |
uses: dawidd6/action-download-artifact@v6 | |
with: | |
workflow: build.yml | |
commit: ${{ github.sha }} | |
path: '.' | |
# This step is to check what files are downloaded and how they are structured, as well as binary sizes for releases | |
- name: List files | |
run: | | |
ls -Rlh | |
# Create new release draft | |
- name: Create release | |
uses: softprops/action-gh-release@v2 | |
with: | |
draft: true | |
generate_release_notes: true | |
files: | | |
**/** |