Skip to content

updated info xml

updated info xml #11

Workflow file for this run

name: Create Release
on:
workflow_dispatch: # Allows manual triggering
push:
tags:
- v* # Triggers on pushes to tags starting with "v"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run release script
id: tag
run: TAG_NAME=$(grep -o '<version>.*</version>' appinfo/info.xml | sed 's/<\/*version>//g') >> "$GITHUB_OUTPUT"
- name: Run release script
run: ./release.sh
- name: Publish release package
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.create_release.outputs.TAG_NAME }}
files: release.tar.gz