Skip to content

Commit

Permalink
chore: change set-output to environment file (#16)
Browse files Browse the repository at this point in the history
* chore: change set-output to environment file

* fix: update OSTk dependencies to be consistent

---------

Co-authored-by: Kyle Cochran <kyle.cochran@loftorbital.com>
  • Loading branch information
kyle-cochran and kyle-cochran authored May 30, 2023
1 parent 57c8d4e commit 35766a8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:
- id: project-name
name: Get Project Name
run: |
echo "Project name: ${project_version}"
echo "::set-output name=value::${{ env.PROJECT_NAME }}"
echo "Project name: ${{ env.PROJECT_NAME }}"
echo "value=${{ env.PROJECT_NAME }}" >> $GITHUB_OUTPUT
- id: project-version
name: Get Project Version
run: |
project_version=$(git describe --tags --always)
echo "Project version: ${project_version}"
echo "::set-output name=value::${project_version}"
echo "value=${project_version}" >> $GITHUB_OUTPUT
build-and-test:
name: Build & Test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ jobs:
- id: project-name
name: Get Project Name
run: |
echo "Project name: ${project_version}"
echo "::set-output name=value::${{ env.PROJECT_NAME }}"
echo "Project name: ${{ env.PROJECT_NAME }}"
echo "value=${{ env.PROJECT_NAME }}" >> $GITHUB_OUTPUT
- id: project-version
name: Get Project Version
run: |
project_version=$(git describe --tags --always)
echo "Project version: ${project_version}"
echo "::set-output name=value::${project_version}"
echo "value=${project_version}" >> $GITHUB_OUTPUT
build-and-test:
name: Build & Test
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Apache License 2.0

open-space-toolkit-astrodynamics~=0.7
open-space-toolkit-astrodynamics~=0.12.2

4 changes: 2 additions & 2 deletions docker/development/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ RUN mkdir -p /tmp/open-space-toolkit-mathematics \

## Open Space Toolkit ▸ Physics

ARG OSTK_PHYSICS_VERSION=0.7.0
ARG OSTK_PHYSICS_VERSION=0.8.1

RUN mkdir -p /tmp/open-space-toolkit-physics \
&& cd /tmp/open-space-toolkit-physics \
Expand All @@ -104,7 +104,7 @@ ENV OSTK_PHYSICS_ENVIRONMENT_MAGNETIC_EARTH_MANAGER_LOCAL_REPOSITORY "/usr/local

## Open Space Toolkit ▸ Astrodynamics

ARG OSTK_ASTRODYNAMICS_VERSION=0.12.0
ARG OSTK_ASTRODYNAMICS_VERSION=0.12.2

RUN mkdir -p /tmp/open-space-toolkit-astrodynamics \
&& cd /tmp/open-space-toolkit-astrodynamics \
Expand Down

0 comments on commit 35766a8

Please sign in to comment.