Release #13
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: Release | |
on: | |
push: | |
tags: | |
- '*' | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
build-and-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Get tag name | |
id: get_tag | |
run: echo ::set-output name=tag_name::$(git describe --tags --abbrev=0) | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
extensions: mbstring | |
- name: Install dependencies with Yarn | |
run: | | |
ls | |
git submodule update --init --recursive | |
chmod +x ./src/cleanphp/release/clean | |
./src/cleanphp/release/clean release -v=${{ steps.get_tag.outputs.tag_name }} -n=vpay | |
./src/cleanphp/release/clean release -v=${{ steps.get_tag.outputs.tag_name }} -n=vpay_bt -f=build_bt.php | |
- name: Build Changelog | |
id: github_release | |
uses: mikepenz/release-changelog-builder-action@v3 | |
with: | |
commitMode: true | |
configuration: "configuration.json" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create Release | |
uses: mikepenz/[email protected] #softprops/action-gh-release | |
with: | |
body: ${{steps.github_release.outputs.changelog}} | |
files: | | |
dist/vpay_*.zip |