Skip to content

Commit

Permalink
Merge branch 'main' into cookies-aes
Browse files Browse the repository at this point in the history
  • Loading branch information
gaby authored Jul 1, 2024
2 parents e92742a + 6108475 commit f95b116
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
20 changes: 10 additions & 10 deletions .github/scripts/sync_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ elif [ "$EVENT" == "release" ]; then
npm ci

# Check if contrib_versions.json exists and modify it if required
if [[ -f $VERSION_FILE ]]; then
jq --arg new_version "$new_version" 'del(.[] | select(. == $new_version))' $VERSION_FILE > temp.json && mv temp.json $VERSION_FILE
fi

# Run docusaurus versioning command
$DOCUSAURUS_COMMAND "${new_version}"

if [[ -f $VERSION_FILE ]]; then
jq 'sort | reverse' ${VERSION_FILE} > temp.json && mv temp.json ${VERSION_FILE}
fi
# if [[ -f $VERSION_FILE ]]; then
# jq --arg new_version "$new_version" 'del(.[] | select(. == $new_version))' $VERSION_FILE > temp.json && mv temp.json $VERSION_FILE
# fi
#
# # Run docusaurus versioning command
# $DOCUSAURUS_COMMAND "${new_version}"
#
# if [[ -f $VERSION_FILE ]]; then
# jq 'sort | reverse' ${VERSION_FILE} > temp.json && mv temp.json ${VERSION_FILE}
# fi
fi

# Push changes
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,9 @@ jobs:
slug: gofiber/fiber

repeated:
needs: unit
strategy:
matrix:
go-version: [1.21.x, 1.22.x]
go-version: [stable]
runs-on: ubuntu-latest
steps:
- name: Fetch Repository
Expand Down

0 comments on commit f95b116

Please sign in to comment.