19 lines
351 B
YAML
19 lines
351 B
YAML
name: Deploy Test4
|
|
run-name: Deploy Test4
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
ENV_TMPFILE: /tmp/nexus-deploy-env
|
|
ENV_POSTGRES_PASSWORD: ${{ secrets.ENV_POSTGRES_PASSWORD }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: main
|
|
- run: echo "OK"
|