This GitHub Action downloads and installs process-compose on the GitHub Actions runner.
Create a workflow in your repository (e.g., .github/workflows/run-process-compose.yml):
name: Install process-compose
on: [push]
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install process-compose
uses: ./- The action downloads the latest release of process-compose for Linux x86_64 and installs it to
/usr/local/bin/process-compose. - The action code is in
index.js. - The action metadata is in
action.yml.