diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..db8fd90 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: hsbasu # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: hsbasu # Replace with a single Ko-fi username +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: hsbasu # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/.github/workflows/publish-deb.yml b/.github/workflows/publish-deb.yml index e923d33..bb93a7b 100644 --- a/.github/workflows/publish-deb.yml +++ b/.github/workflows/publish-deb.yml @@ -8,6 +8,7 @@ on: push: tags: - "*.*.*" + workflow_dispatch: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: @@ -27,7 +28,7 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - name: Checkout repository - uses: actions/checkout@master + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -35,8 +36,8 @@ jobs: - name: install-deps run: | sudo apt-get update -qq - sudo apt install -y build-essential debhelper devscripts \ - dh-python python3-all python3-setuptools python3-sphinx + sudo apt install -y build-essential debhelper devscripts dh-python \ + libglib2.0-bin python python3-all python3-setuptools python3-sphinx - name: build-deb run: | @@ -46,7 +47,7 @@ jobs: - name: get latest tag id: gettag - run: echo "::set-output name=latesttag::$(git describe --tags --abbrev=0 || git rev-list --max-parents=0 ${{github.ref}})" + run: echo "latesttag=$(git describe --tags --abbrev=0 || git rev-list --max-parents=0 ${{github.ref}})" >> $GITHUB_OUTPUT - name: Create Release uses: softprops/action-gh-release@v1