From 8f4fcb496fff57d94b9a2f3820e0dffecbe73d2c Mon Sep 17 00:00:00 2001 From: Rohail Taimour Date: Thu, 19 Oct 2023 12:46:46 +0200 Subject: [PATCH] push changes --- .github/workflows/release.yaml | 34 ++++++++++++++++++++++++++++++++++ body.md | 4 ++++ 2 files changed, 38 insertions(+) create mode 100644 .github/workflows/release.yaml create mode 100644 body.md diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..665df85 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,34 @@ +name: Releases + +on: + push: + tags: + - 'v*' + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.10' + + - name: Install Poetry + run: pip install poetry + + - name: Build Package + run: poetry build + + - name: Create Release + uses: ncipollo/release-action@v1 + with: + artifacts: "dist/*.tar.gz" + bodyFile: "body.md" + token: ${{ secrets.GH_TOKEN }} diff --git a/body.md b/body.md new file mode 100644 index 0000000..511ae2f --- /dev/null +++ b/body.md @@ -0,0 +1,4 @@ +# Immoweb Scraper Release v1.0.0 + +## Overview +This release marks the first stable version of the Immoweb Scraper. This tool allows you to scrape real estate data from Immoweb and save it to a local sqlite database. \ No newline at end of file