Skip to content

Restore install command #22

Restore install command

Restore install command #22

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
COMPOSER_HOME: ./.composer
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Lint
run: make lint
- name: Build
id: build
uses: gocom/action-textpattern-package-plugin@master
- name: Upload Compressed Plugin Installer Artifact
uses: actions/upload-artifact@v4
with:
name: ${{ steps.build.outputs.name }}_sha${{ github.sha }}_zip.txt
path: ${{ github.workspace }}/${{ steps.build.outputs.compressed }}
- name: Upload Uncompressed Plugin Installer Artifact
uses: actions/upload-artifact@v4
with:
name: ${{ steps.build.outputs.name }}_sha${{ github.sha }}.txt
path: ${{ github.workspace }}/${{ steps.build.outputs.uncompressed }}