v1.6.2 #1
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-artifact | |
on: | |
release: | |
types: [published] | |
jobs: | |
create-release-artifact: | |
name: Creating release artifact | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: build artifact | |
run: composer run package && mv ./tmp/tawkmagento2.zip tawkmagento2.zip | |
- name: upload artifact | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: ./tawkmagento2.zip | |
asset_name: tawkmagento2.zip | |
asset_content_type: application/zip |