Skip to content

Commit bd62db1

Browse files
committed
Ensure github deployments have proper permissions
Signed-off-by: Daniel Mizyrycki <mzdaniel@glidelink.net>
1 parent 67378cc commit bd62db1

3 files changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
needs: [test_prod]
3232
runs-on: ubuntu-latest
3333
environment: production
34+
permissions: {id-token: write, contents: write}
3435
steps:
3536
- uses: actions/checkout@v5
3637
with: {ref: main, persist-credentials: false}

ChangeLog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
["0.2.1rc3"]
2+
notes = """
3+
loadconfig 0.2.1rc3 (2025-10-05)
4+
================================
5+
6+
* Ensure github deployments have proper permissions"""
7+
8+
19
["0.2.1rc2"]
210
notes = """
311
loadconfig 0.2.1rc2 (2025-10-05)

loadconfig/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
__all__ = ['Config', 'Odict', '__version__']
44

55
__author__ = 'Daniel Mizyrycki'
6-
__version__ = '0.2.1.rc2'
6+
__version__ = '0.2.1.rc3'
77

88
from itertools import count
99
from .lib import (Odict, delregex, dfl, findregex, flatten,

0 commit comments

Comments
 (0)