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 31dc975 commit 9254048Copy full SHA for 9254048
.github/workflows/backend-dev.yml
@@ -65,9 +65,11 @@ jobs:
65
working-directory: ./backend
66
67
steps:
68
+ - name: Git Checkout
69
+ uses: actions/checkout@v3
70
+
71
- name: Copy appspec.yml
- run:
- cp ./appspec-dev.yml ./appspec.yml
72
+ run: mv ./appspec-dev.yml ./appspec.yml
73
74
- name: Make zip file
75
run: zip -qq -r ./dev.zip . -x "node_modules/*"
.github/workflows/backend-prod.yml
- cp ./appspec-prod.yml ./appspec.yml
+ run: mv ./appspec-prod.yml ./appspec.yml
run: zip -qq -r ./prod.zip . -x "node_modules/*"
0 commit comments