Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(Wikilinks): Removing slug in wiki seems to repear my links problem #42

Open
wants to merge 39 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
9c3665c
fix(Wikilinks): Removing slug in wiki seems to repear my links problem
Mara-Li Jan 27, 2022
46c6519
style(black): Using black is good for reading
Mara-Li Jan 27, 2022
1f74ae2
ci: build for fork
Mara-Li Mar 23, 2022
7a72fa4
0.1.15
Mar 23, 2022
a900d9e
0.1.16
Mar 23, 2022
723e7d4
ci: strict requirements
Mara-Li Mar 23, 2022
44aeb20
ci: Add semantic workflow
Mara-Li Mar 23, 2022
b5c33d5
Update README.md
Mara-Li Mar 23, 2022
f9aa3c2
Update README.md
Mara-Li Mar 23, 2022
e5c9920
ci: Update requirements & build
Mara-Li Mar 23, 2022
e77b6e0
Merge branch 'main' of github.com:Mara-Li/mkdocs-ezlinks-plugin
Mara-Li Mar 23, 2022
1f17f3b
Update requirements.txt
Mara-Li Mar 28, 2022
6529730
fix: Update to mkdocs 1.3.0
Mara-Li Mar 28, 2022
6489c0c
Merge branch 'main' of github.com:Mara-Li/mkdocs-ezlinked-plugin
Mara-Li Mar 28, 2022
86d8313
fix: Update to mkdocs 1.3.0
Mara-Li Mar 28, 2022
00276da
Update python-publish.yml
Mara-Li Mar 28, 2022
a832dc2
0.1.17
Mar 28, 2022
504d117
Merge branch 'main' of github.com:Mara-Li/mkdocs-ezlinked-plugin
Mara-Li Mar 28, 2022
2725c7c
0.1.18
Mar 28, 2022
edd395a
fix: image created with wikilinks that don't end with image format
Mara-Li Jun 23, 2022
08f78bc
0.1.19
Jun 23, 2022
a47512d
revert: revert update
Mara-Li Jun 23, 2022
aa83844
0.2.0
Jun 23, 2022
e2668e9
Update types.py
Mara-Li Jul 13, 2022
9c702a8
fix: remove uncessary logging message
Mara-Li Jul 13, 2022
408421f
0.2.1
actions-user Jul 13, 2022
915d7b3
0.3.0
Jul 13, 2022
11ff9b2
fix: relative file not found
Mara-Li Oct 1, 2022
2386158
0.3.1
Oct 1, 2022
1a03bfa
fix: relative file not found
Mara-Li Oct 1, 2022
68627ce
0.3.2
Oct 1, 2022
4e45055
remove idea
Mara-Li Dec 8, 2022
b9e3d13
remove idea
Mara-Li Dec 8, 2022
8f3a8d6
remove idea
Mara-Li Dec 8, 2022
8666a79
attemp to fix broken build (not success)
Mara-Li Dec 8, 2022
dc1741f
fix: update for mkdocs 1.4.0
Mara-Li Dec 8, 2022
bc3c07c
0.3.3
invalid-email-address Dec 8, 2022
380116f
fix(deprecation): remove warning_filter
Mara-Li Oct 20, 2023
d56ee44
0.3.4
invalid-email-address Oct 20, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 13 additions & 22 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,22 @@
# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries

name: Upload Python Package
name: Semantic Release

on:
release:
types: [created]
push:
branches:
- main

jobs:
deploy:

release:
runs-on: ubuntu-latest
concurrency: release

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
fetch-depth: 0
- name: Python Semantic Release
uses: relekang/python-semantic-release@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
repository_username: __token__
repository_password: ${{ secrets.PYPI_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -133,3 +133,4 @@ dmypy.json
.pyre/

.vscode/launch.json
.idea/*
10 changes: 10 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading