Skip to content

Commit

Permalink
update from pyproject_tmpl
Browse files Browse the repository at this point in the history
  • Loading branch information
mnot committed Oct 13, 2023
1 parent 2de280e commit 7994564
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 26 deletions.
18 changes: 3 additions & 15 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,13 @@ charset = utf-8
max_line_length = 100
trim_trailing_whitespace = true
indent_style = space
indent_size = 4

[Makefile*]
indent_style = tab
tab_width = 4

[*.md]
indent_size = 2

[*.py]
indent_size = 4

[*.js]
indent_size = 2

[*.scss]
indent_size = 2

[*.yml]
[{*.md,*.js,*.scss,*.yml}]
indent_size = 2

[*.html]
max_line_length = off
max_line_length = unset
20 changes: 9 additions & 11 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,16 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: write # IMPORTANT: mandatory for making GitHub Releases
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 5
- run: |
gh release create "${{ github.ref_name }}" --verify-tag
env:
GITHUB_TOKEN: ${{ github.TOKEN }}
shell: bash
name: Create a release in GitHub
- uses: actions/checkout@v4
with:
fetch-depth: 5
- name: Create a GitHub release
shell: bash
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
gh release create "${{ github.ref_name }}" --verify-tag
sign:
name: >-
Expand Down

0 comments on commit 7994564

Please sign in to comment.