Skip to content

Merge pull request #164 from BeAPI/release/3.12.4 #23

Merge pull request #164 from BeAPI/release/3.12.4

Merge pull request #164 from BeAPI/release/3.12.4 #23

Workflow file for this run

name: Upload Release Asset
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- '*' # Push events to matching *
jobs:
build:
name: Upload Release Asset
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build project PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.1
- run: composer install --prefer-dist --no-dev -o
- run: |
echo "ℹ︎ Create release folder"
if [ ! -e "./bin/release/" ]; then
mkdir -p bin/release
fi
echo "ℹ︎ Remove any existing zip file"
rm -f bin/release/*.zip
echo "ℹ︎ Copy files based on .distignore"
rsync -rcv --exclude-from=".distignore" ./ bin/release --delete
echo "Creating archive..."
cd bin/release
zip -r ../bea-content-sync-fusion.zip ./*
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./bin/bea-content-sync-fusion.zip
asset_name: bea-content-sync-fusion.zip
asset_content_type: application/zip