-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #86 from swyddfa/develop
New Release
- Loading branch information
Showing
105 changed files
with
4,961 additions
and
3,186 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: 'Release: lsp-devtools' | ||
|
||
on: | ||
push: | ||
branches: | ||
- release | ||
paths: | ||
- 'lib/lsp-devtools/**' | ||
|
||
jobs: | ||
release: | ||
name: lsp-devtools release | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: pypi | ||
url: https://pypi.org/p/lsp-devtools | ||
permissions: | ||
id-token: write | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
|
||
- run: | | ||
sudo apt update | ||
sudo apt install pandoc | ||
python --version | ||
python -m pip install --upgrade pip | ||
python -m pip install build bump2version towncrier docutils | ||
name: Install Build Tools | ||
- run: | | ||
set -e | ||
./scripts/make-release.sh lsp-devtools | ||
name: Set Version | ||
id: info | ||
- name: Package | ||
run: | | ||
cd lib/lsp-devtools | ||
python -m build | ||
- name: 'Upload Artifact' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: 'dist' | ||
path: lib/lsp-devtools/dist | ||
|
||
- name: Publish | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
packages-dir: lib/lsp-devtools/dist/ | ||
|
||
- name: Create Release | ||
run: | | ||
gh release create "${RELEASE_TAG}" \ | ||
--title "lsp-devtools v${VERSION} - ${RELEASE_DATE}" \ | ||
-F lib/lsp-devtools/.changes.html \ | ||
./lib/lsp-devtools/dist/* | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: 'Release: pytest-lsp' | ||
|
||
on: | ||
push: | ||
branches: | ||
- release | ||
paths: | ||
- 'lib/pytest-lsp/**' | ||
|
||
jobs: | ||
release: | ||
name: pytest-lsp release | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: pypi | ||
url: https://pypi.org/p/pytest-lsp | ||
permissions: | ||
id-token: write | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
|
||
- run: | | ||
sudo apt update | ||
sudo apt install pandoc | ||
python --version | ||
python -m pip install --upgrade pip | ||
python -m pip install build bump2version towncrier docutils | ||
name: Install Build Tools | ||
- run: | | ||
set -e | ||
./scripts/make-release.sh pytest-lsp | ||
name: Set Version | ||
id: info | ||
- name: Package | ||
run: | | ||
cd lib/pytest-lsp | ||
python -m build | ||
- name: 'Upload Artifact' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: 'dist' | ||
path: lib/pytest-lsp/dist | ||
|
||
- name: Publish | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
packages-dir: lib/pytest-lsp/dist/ | ||
|
||
- name: Create Release | ||
run: | | ||
gh release create "${RELEASE_TAG}" \ | ||
--title "pytest-lsp v${VERSION} - ${RELEASE_DATE}" \ | ||
-F lib/pytest-lsp/.changes.html \ | ||
./lib/pytest-lsp/dist/* | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
Oops, something went wrong.