Skip to content

Commit 71f8f2f

Browse files
committed
rm dev compose (rocket doesn't do hot reloading out of the box anyway), remove placeholders in deploy.yaml, and fix sample file checker
1 parent a1f7e2b commit 71f8f2f

File tree

3 files changed

+2
-17
lines changed

3 files changed

+2
-17
lines changed

samples/rocket/.github/workflows/deploy.yaml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,4 @@ jobs:
1717
uses: actions/checkout@v4
1818

1919
- name: Deploy
20-
uses: DefangLabs/[email protected]
21-
#REMOVE_ME_AFTER_EDITING - Replace the following line with the list of environment variables you want to pass to the action
22-
# or remove the lines if you don't need to pass any environment variables/secrets to the action
23-
with:
24-
config-env-vars: ENV1 ENV2
25-
env:
26-
ENV1: ${{ secrets.ENV1 }}
27-
ENV2: ${{ secrets.ENV2 }}
20+
uses: DefangLabs/[email protected]

samples/rocket/compose.dev.yaml

Lines changed: 0 additions & 8 deletions
This file was deleted.

scripts/check-sample-files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ for dir in ./samples/*/; do
4747
fi
4848

4949
# Check for #REMOVE_ME_AFTER_EDITING
50-
matches=$(grep -rnH "#REMOVE_ME_AFTER_EDITING" $dir* | cut -d: -f1,2)
50+
matches=$(grep -rnH "#REMOVE_ME_AFTER_EDITING" "$dir" | cut -d: -f1,2)
5151

5252
if [ -n "$matches" ]; then
5353
echo "$matches" | while read -r line; do

0 commit comments

Comments
 (0)