Skip to content

Commit 1d1ccc7

Browse files
Fix typos.
1 parent 3be0cf4 commit 1d1ccc7

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/development.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- name: Get changelog entry
1313
id: changelog_reader
14-
uses: guzman-raphael/changelog-reader-action@v7
14+
uses: guzman-raphael/changelog-reader-action@v5
1515
with:
1616
path: ./CHANGELOG.md
1717
- name: Verify changelog parsing
@@ -117,7 +117,7 @@ jobs:
117117
echo "PHARUS_VERSION=${PHARUS_VERSION}" >> $GITHUB_ENV
118118
- name: Get changelog entry
119119
id: changelog_reader
120-
uses: guzman-raphael/changelog-reader-action@v7
120+
uses: guzman-raphael/changelog-reader-action@v5
121121
with:
122122
path: ./CHANGELOG.md
123123
version: ${{env.PHARUS_VERSION}}

docker-compose-deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
# Intended for production deployment.
55
# Note: You must run both commands above for minimal outage
66
# Make sure to add an entry into your /etc/hosts file as `127.0.0.1 fakeservices.datajoint.io`
7-
# This serves to as an alias for the domain to resolve locally.
7+
# This serves as an alias for the domain to resolve locally.
88
# With this config and the configuration below in NGINX, you should be able to verify it is
9-
# running properly with a `curl https://fakeservices.datajoint.io/api/version`
9+
# running properly with a `curl https://fakeservices.datajoint.io/api/version`.
1010
version: "2.4"
1111
x-net: &net
1212
networks:

docker-compose-dev.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# PY_VER=3.8 IMAGE=djbase DISTRO=alpine PHARUS_VERSION=$(cat pharus/version.py | tail -1 | awk -F\' '{print $2}') HOST_UID=$(id -u) docker-compose -f docker-compose-dev.yaml up
22
#
33
# Intended for normal development. Supports hot/live reloading.
4-
# Note: If requirements or Dockerfile change, will need to add --build flag to docker-compose
4+
# Note: If requirements or Dockerfile change, will need to add --build flag to docker-compose.
55
# Make sure to add an entry into your /etc/hosts file as `127.0.0.1 fakeservices.datajoint.io`
6-
# This serves to as an alias for the domain to resolve locally.
6+
# This serves as an alias for the domain to resolve locally.
77
# With this config and the configuration below in NGINX, you should be able to verify it is
8-
# running properly with a `curl https://fakeservices.datajoint.io/api/version`
8+
# running properly with a `curl https://fakeservices.datajoint.io/api/version`.
99
version: "2.4"
1010
x-net: &net
1111
networks:

docker-compose-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# PY_VER=3.8 IMAGE=djtest DISTRO=alpine AS_SCRIPT=FALSE PHARUS_VERSION=$(cat pharus/version.py | tail -1 | awk -F\' '{print $2}') HOST_UID=$(id -u) docker-compose -f docker-compose-test.yaml up --exit-code-from pharus
22
#
33
# Intended for running test suite locally.
4-
# Note: If requirements or Dockerfile change, will need to add --build flag
4+
# Note: If requirements or Dockerfile change, will need to add --build flag.
55
version: "2.4"
66
x-net: &net
77
networks:

0 commit comments

Comments
 (0)