Skip to content

Commit cd4e92e

Browse files
Fix action references (#2)
1 parent 20239d4 commit cd4e92e

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ runs:
8888
8989
- if: ${{ inputs.is-cross-platform != 'true' }}
9090
name: Build native or platform independent packages
91-
uses: GlobalScope-HUN/python-package-action/native@v1
91+
uses: EffectiveRange/python-package-github-action/native@v1
9292
with:
9393
python-version: ${{ inputs.python-version }}
9494
add-source-dist: ${{ inputs.add-source-dist }}
@@ -98,7 +98,7 @@ runs:
9898

9999
- if: ${{ inputs.is-cross-platform == 'true' }}
100100
name: Build cross platform packages via devcontainer
101-
uses: GlobalScope-HUN/python-package-action/cross@v1
101+
uses: EffectiveRange/python-package-github-action/cross@v1
102102
with:
103103
docker-registry: ${{ inputs.docker-registry }}
104104
docker-username: ${{ inputs.docker-username }}

test/debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Source: test-module
22
Section: python
33
Priority: extra
4-
Maintainer: Global Scope Ltd. <info@globalscope.info>
4+
Maintainer: Effective Range <info@effective-range.com>
55
Build-Depends: debhelper (>= 9), python3, dh-virtualenv (>= 0.8)
66
Standards-Version: 3.9.5
77

test/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_platform_name() -> str:
1616
},
1717
},
1818
description='Test module for packaging',
19-
author='Global Scope Ltd.',
20-
author_email='info@globalscope.info',
19+
author='Effective Range',
20+
author_email='info@effective-range.com',
2121
packages=['main']
2222
)

0 commit comments

Comments
 (0)