Skip to content

Latest commit

 

History

History
37 lines (32 loc) · 933 Bytes

README.md

File metadata and controls

37 lines (32 loc) · 933 Bytes

CoCart - Action Build

A GitHub Action to build CoCart using Composer and NPM.

Managing files in the build

Use a .distignore file to exclude files from the build.

Example

name: Build release and save asset
on:
  release:
    types: [published]
jobs:
  build:
    name: Build release and save asset
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v2
      - name: Build
        id: build
        uses: co-cart/action-build@master
        with:
          generate-zip: true
      - name: Upload release asset
        uses: actions/upload-release-asset@v1
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        with:
          upload_url: ${{ github.event.release.upload_url }}
          asset_path: ${{ steps.build.outputs.zip_path }}
          asset_name: ${{ github.event.repository.name }}.zip
          asset_content_type: application/zip