We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 020b3ea commit fd6770dCopy full SHA for fd6770d
.github/workflows/deployment.yml
@@ -30,8 +30,14 @@ jobs:
30
- name: Install dependencies
31
if: steps.cache.outputs.cache-hit != 'true'
32
run: npm ci
33
+ check_port:
34
+ needs: checkout
35
+ runs-on: [self-hosted, "${{inputs.runner}}"]
36
+ steps:
37
+ - run: |
38
+ echo "port: ${{inputs.port}}"
39
create_env:
- needs: checkout
40
+ needs: check_port
41
runs-on: [self-hosted, "${{inputs.runner}}"]
42
environment: ${{inputs.environment}}
43
steps:
.github/workflows/dev.yml
@@ -11,5 +11,5 @@ jobs:
11
environment: "dev"
12
runner: "dev"
13
env_file: "dev.env"
14
- port: ${{vars.PORT}}
+ port: "${{vars.PORT}}"
15
secrets: inherit
0 commit comments