mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 06:57:35 +08:00
18 lines
318 B
YAML
18 lines
318 B
YAML
name: Deploy Docker Image
|
|
|
|
on:
|
|
workflow_dispatch
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Execute custom script
|
|
run: |
|
|
cat >> deploy.sh <<EOF
|
|
#!/bin/sh
|
|
${{ vars.CUSTOM_DEPLOY_SCRIPTS }}
|
|
EOF
|
|
chmod +x deploy.sh
|
|
./deploy.sh
|