This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/.github/workflows/release.yml

63 lines
2 KiB
YAML
Raw Normal View History

2020-03-25 13:40:54 +00:00
name: Create Release
on:
push:
tags:
- 'v*'
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Get version from tag
2020-03-25 13:53:21 +00:00
id: get_version
2024-01-05 15:59:53 +00:00
run: echo VERSION=${GITHUB_REF/refs\/tags\/v/} >> $GITHUB_OUTPUT
2020-03-25 13:53:21 +00:00
- name: Test version in sys_config
run: grep ${{ steps.get_version.outputs.VERSION }} core/sys_config.php
2020-03-25 13:40:54 +00:00
- name: Build
run: |
2024-01-05 15:59:53 +00:00
composer install --no-dev --no-progress
2020-03-25 13:40:54 +00:00
cd ..
2020-03-25 13:53:21 +00:00
tar cvzf shimmie2-${{ steps.get_version.outputs.VERSION }}.tgz shimmie2
zip -r shimmie2-${{ steps.get_version.outputs.VERSION }}.zip shimmie2
2020-03-25 13:40:54 +00:00
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
2020-03-25 13:53:21 +00:00
release_name: Shimmie ${{ steps.get_version.outputs.VERSION }}
2020-03-25 13:40:54 +00:00
body: Automated release from tags
draft: false
prerelease: false
- name: Upload Zip
id: upload-release-asset-zip
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
2020-03-25 13:53:21 +00:00
asset_path: ../shimmie2-${{ steps.get_version.outputs.VERSION }}.zip
asset_name: shimmie2-${{ steps.get_version.outputs.VERSION }}.zip
2020-03-25 13:40:54 +00:00
asset_content_type: application/zip
- name: Upload Tar
id: upload-release-asset-tar
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
2020-03-25 13:53:21 +00:00
asset_path: ../shimmie2-${{ steps.get_version.outputs.VERSION }}.tgz
asset_name: shimmie2-${{ steps.get_version.outputs.VERSION }}.tgz
2020-03-25 13:40:54 +00:00
asset_content_type: application/gzip