mirror of
https://github.com/documenso/documenso.git
synced 2025-11-27 06:54:01 +10:00
13 lines
457 B
YAML
13 lines
457 B
YAML
# .github/actions/docker-compose/action.yml
|
|
name: 'Docker-Compose Setup'
|
|
description: 'Sets up docker-compose'
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Download Docker-Compose plugin
|
|
shell: bash
|
|
run: curl -SL https://github.com/docker/compose/releases/download/v2.16.0/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose
|
|
- name: Make plugin executable
|
|
shell: bash
|
|
run: sudo chmod +x /usr/local/bin/docker-compose
|