Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
jayaddison committed Sep 14, 2024
2 parents b7e2d8c + 785532f commit 92b0302
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 18 deletions.
2 changes: 0 additions & 2 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
Before opening a new issue, please read the following:

- for **feature requests**, please use [FeatHub](https://feathub.com/Guake/guake). This allow us to
spot directly which are the most requested features.
- before opening **a new bug**, please search for a similar one in the
[GitHub issue](https://github.com/Guake/guake/issues).
- to **report a bug**, please give the following information:
Expand Down
6 changes: 0 additions & 6 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,3 @@ assignees: ''
Be sure to check the existing issues (both open and closed!), and make sure you are running the latest version of Guake.

For how to run the latest Guake in your computer, please refer to [Install from source](https://guake.readthedocs.io/en/latest/user/installing.html#install-from-source).

---------------------------------------

Please use [FeatHub](https://feathub.com/Guake/guake) to fill-up a feature request.

This allows us to spot directly which are the most requested features.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
python-version: ["3.8", "3.9"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Get tag
id: tag
run: echo ::set-output name=tag::${GITHUB_REF#refs/tags/}
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:

- name: Store dists (Python 3.9)
if: steps.isLatest.outputs.result
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
Expand All @@ -81,7 +81,7 @@ jobs:
- build
steps:
- name: Retrieve dists
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
path: ./
- name: Publish distribution 📦 to Test PyPI
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Get tag
id: tag
run: echo ::set-output name=tag::${GITHUB_REF#refs/tags/}
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT

- name: Set up Python 3.8
uses: actions/setup-python@v2
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9

- name: Checkout the current branch
run: |
Expand Down

0 comments on commit 92b0302

Please sign in to comment.