Skip to content

Commit

Permalink
Add documentation and action
Browse files Browse the repository at this point in the history
  • Loading branch information
linusha committed Aug 16, 2024
1 parent e3581a2 commit 4d2992a
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 2 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/export.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Publish Current Export
on:
workflow_dispatch:
schedule:
- cron: '0 3 * * 1'

jobs:
export:
runs-on: ubuntu-latest
steps:
- name: Store Current Date
id: date
run: echo "DATE=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT"
- name: Checkout Data Repository
uses: actions/checkout@v4
- name: Configure `git`
run: |
git config user.name htv-bot
git config user.email [email protected]
- name: Create new Commit and tag it
env:
DATE: ${{ steps.date.outputs.DATE }}
run: |
git commit --allow-empty -m "Export from $DATE"
git push
git tag "$DATE"
git push origin tag "$DATE"
- name: Download current export
env:
DATE: ${{ steps.date.outputs.DATE }}
run: |
wget https://howtheyvote.eu/files/export/export.zip
unzip -o -d export export.zip
- name: Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.date.outputs.DATE }}
files: export.zip
body_path: ./export/README.md
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
# data
Weekly updated data on roll-call-votes in the European Parliament, as collected by https://howtheyvote.eu/.
# HowTheyVote.eu Database

HowTheyVote.eu collects data about European Parliament roll-call votes and related data such as biographical information about MEPs and political groups. We provide a full export of the database in CSV format.

**[Read more about HowTheyVote.eu and the license for our data →](https://howtheyvote.eu/about)**

To download the current database click [here](https://github.com/HowTheyVote/data/releases/latest).

There, you will find the documentation for each data export. At the bottom of each export, you can download all files as a single `export.zip` file..

![image](https://github.com/user-attachments/assets/0424e4f3-1415-4717-b50d-464b7410a460)

0 comments on commit 4d2992a

Please sign in to comment.