Skip to content

Commit

Permalink
push changes
Browse files Browse the repository at this point in the history
  • Loading branch information
roumail committed Oct 19, 2023
1 parent 49210aa commit 8f4fcb4
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -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 }}
4 changes: 4 additions & 0 deletions body.md
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit 8f4fcb4

Please sign in to comment.