Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,19 @@ jobs:
cp -r infra/monitoring "$TAR_DIR/infra/"
cd "$TAR_DIR" && tar -czf "../dequel-config-${VERSION}.tar.gz" .

- name: Extract changelog entry for this version
run: |
VERSION="${{ steps.version.outputs.VERSION }}"
awk '/^## \['"$VERSION"'\] -/{flag=1; next} /^## \[/{if(flag) exit} flag' CHANGELOG.md > release-notes.md
if [ ! -s release-notes.md ]; then
echo "No changelog entry for v$VERSION, will use auto-generated notes"
fi

- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
name: v${{ steps.version.outputs.VERSION }}
body_path: CHANGELOG.md
body_path: release-notes.md
generate_release_notes: true
files: |
scripts/install.sh
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ apps/api/index
docker-compose.yml
bump.sh
scripts/workflow/bump.sh
__pycache__
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ services:
- ./workspace:/app/workspace
- ./infra/caddy/routes:/caddy/routes
- /var/run/docker.sock:/var/run/docker.sock
- railpack-cache:/tmp/railpack
depends_on:
buildkit:
condition: service_started
Expand Down Expand Up @@ -278,4 +279,5 @@ volumes:
prometheus-data:
loki-data:
grafana-data:
railpack-cache:
promtail-data:
Loading