Skip to content

Commit

Permalink
trying to bulk replace 8126 with 8821
Browse files Browse the repository at this point in the history
  • Loading branch information
ampledata committed Nov 2, 2024
1 parent 2dce552 commit 2acb38b
Show file tree
Hide file tree
Showing 751 changed files with 4,343 additions and 3,267 deletions.
13 changes: 13 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# These are supported funding model platforms

github: ampledata
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: ampledata
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
custom: https://www.buymeacoffee.com/ampledata
52 changes: 52 additions & 0 deletions .github/workflows/debian.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Build Debian Package

on:
push:
tags:
- '*'

env:
DEB_BUILD_OPTIONS: nocheck

jobs:
build-artifact:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master

- name: Install Debian Package Building Dependencies
run: sudo bash debian/install_pkg_build_deps.sh

- name: Create Debian Package
run: make clean package

- name: Copy Debian Package to Artifact Directory
run: cp ../*.deb .

- name: Upload Artifacts to GitHub
uses: actions/upload-artifact@master
with:
name: artifact-deb
path: ./*.deb

- name: Create GitHub Release
id: create_release
uses: actions/create-release@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

- name: Upload Release Asset to GitHub
id: upload-release-asset
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./*.deb
tag: ${{ github.ref }}
overwrite: true
file_glob: true
353 changes: 339 additions & 14 deletions LICENSE

Large diffs are not rendered by default.

Loading

0 comments on commit 2acb38b

Please sign in to comment.