Skip to content

Commit

Permalink
Updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ywkim312 committed Nov 5, 2024
1 parent 59e7f2a commit a8813ef
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 15 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,6 @@ jobs:
echo "TAGS=${BRANCH}" >> $GITHUB_ENV
fi
# debug TAGS
- name: Debug TAGS
run: echo "TAGS=${{ env.TAGS }}"

# build image
- name: Build image
uses: elgohr/[email protected]
Expand Down
12 changes: 1 addition & 11 deletions .github/workflows/doc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
- main
- develop
- 'release/*'
- test-main

tags:
- '*'
Expand All @@ -16,7 +15,6 @@ on:
- main
- develop
- 'release/*'
- test-main

env:
MAIN_REPO: IN-CORE/pyincore-viz
Expand All @@ -43,13 +41,10 @@ jobs:
BRANCH=${GITHUB_REF##*/}
fi
echo "GITHUB_BRANCH=${BRANCH}" >> $GITHUB_ENV
if [ "$BRANCH" == "test-main" ]; then
# Extract version from conf.py and generate tags without quotes
if [ "$BRANCH" == "main" ]; then
version=$(awk -F= '/^release/ { print $2}' docs/source/conf.py | sed "s/[ ']//g")
tags="latest"
oldversion=""
while [ "${oldversion}" != "${version}" ]; do
oldversion="${version}"
tags="${tags},${version}"
Expand All @@ -59,7 +54,6 @@ jobs:
tags=$(echo $tags | sed 's/"//g')
echo "VERSION=${version}" >> $GITHUB_ENV
echo "TAGS=${tags}" >> $GITHUB_ENV
elif [ "$BRANCH" == "develop" ]; then
echo "VERSION=develop" >> $GITHUB_ENV
echo "TAGS=develop" >> $GITHUB_ENV
Expand All @@ -72,10 +66,6 @@ jobs:
- name: Debug TAGS
run: echo "TAGS=${{ env.TAGS }}"

# debug TAGS
- name: Debug TAGS
run: echo "TAGS=${{ env.TAGS }}"

# build image
- name: Build image
uses: elgohr/[email protected]
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Fixed
- Documentation container tagging error by github action [#181](https://github.com/IN-CORE/pyincore-viz/issues/181)
- Pytest error caused by removed hazard dataset [#182](https://github.com/IN-CORE/pyincore-viz/issues/182)

## [1.11.0] - 2024-10-23
Expand Down

0 comments on commit a8813ef

Please sign in to comment.