mirror of
https://github.com/documenso/documenso.git
synced 2025-11-26 14:34:05 +10:00
feat: add docker to gh action
This commit is contained in:
12
.github/workflows/actions/docker-compose/action.yml
vendored
Normal file
12
.github/workflows/actions/docker-compose/action.yml
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
# .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
|
||||
Reference in New Issue
Block a user