Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
milouk committed Sep 29, 2024
0 parents commit fa9ab03
Show file tree
Hide file tree
Showing 328 changed files with 2,183 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "pip" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
25 changes: 25 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Lint

on: workflow_call

permissions:
contents: read

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run linters
run: flake8 .
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Main branch pipeline

on:
push:
branches: [main]
pull_request:
branches: [main]

permissions:
actions: read
contents: write
id-token: write

concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true

jobs:
tests:
uses: ./.github/workflows/tests.yml
secrets: inherit
lint:
uses: ./.github/workflows/lint.yml
secrets: inherit
53 changes: 53 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# .github/workflows/release.yml
name: Release

on:
push:
branches: [main]

permissions:
contents: write

jobs:
build-release:
name: Build artifacts
runs-on: ubuntu-latest
container:
image: docker.io/batonogov/pyinstaller-linux:latest
steps:
- name: Check out the repo
uses: actions/checkout@v2

- name: Build package
run: |
echo "Creating Linux artifact"
apt-get update && apt-get install -y zip
pip install -r ./requirements.txt
pyinstaller --onefile ./src/app.py
mkdir -p .artie && \
cp -r ./dist/app ./assets ./config.json .artie
zip -r Artie.zip .artie ./Artie\ Scraper.sh
- name: Get HEAD commit hash
id: get_commit
run: echo "::set-output name=commit_hash::$"

- name: Upload Artie.zip
uses: actions/upload-artifact@v3
with:
name: Artie
path: Artie.zip

- name: Generate release tag
id: tag
run: |
echo "::set-output name=release_tag::Artie_$(date +"%Y.%m.%d_%H-%M")"
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: Artie.zip
tag_name: ${{ steps.tag.outputs.release_tag }}
release_name: Release ${{ steps.get_commit.outputs.commit_hash }}
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
__pycache__
roms
dist
build
app.spec
.DS_Store
build.sh
4 changes: 4 additions & 0 deletions Artie Scraper.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash
progdir=$(dirname "$0")
cd $progdir
./app
Loading

0 comments on commit fa9ab03

Please sign in to comment.