Skip to content

Commit

Permalink
Merge pull request #116 from cordada/chore/minor-fixes
Browse files Browse the repository at this point in the history
chore: minor fixes
  • Loading branch information
burmecia authored Jul 17, 2023
2 parents 92dd949 + 3d28d77 commit fa47d62
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ node_modules/
results/
venv/
*.md
*.md
*.py
*.yaml
*.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
cd wrappers
# Add postgres package repo
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
sudo sh -c 'echo "deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
wget -qO- https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo tee /etc/apt/trusted.gpg.d/pgdg.asc &>/dev/null
sudo apt-get update
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test_wrappers.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Test Wrappers
on:
pull_request:
push: { branches: main }
push:
branches:
- main

jobs:
test:
Expand All @@ -23,7 +25,7 @@ jobs:
- run: |
sudo apt remove -y postgres*
sudo apt-get install -y wget gnupg
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
sudo sh -c 'echo "deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update -y -qq --fix-missing
sudo apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion wrappers/dockerfiles/firebase/firebase.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"emulators":{"firestore":{"port":"8080","host":"0.0.0.0"},"ui":{"enabled":true,"port":"4000","host":"0.0.0.0"},"auth":{"port":"9099","host":"0.0.0.0"}}}
{"emulators":{"firestore":{"port":8080,"host":"0.0.0.0"},"ui":{"enabled":true,"port":4000,"host":"0.0.0.0"},"auth":{"port":9099,"host":"0.0.0.0"}}}

0 comments on commit fa47d62

Please sign in to comment.