Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
chmod a+x builder
./builder build -p ${{ env.PACKAGE_NAME }}
- name: configure AWS credentials (MQTT5)
uses: aws-actions/configure-aws-credentials@v2
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ env.CI_MQTT5_ROLE }}
aws-region: ${{ env.AWS_DEFAULT_REGION }}
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
chmod a+x builder
./builder build -p ${{ env.PACKAGE_NAME }}
- name: configure AWS credentials (MQTT5)
uses: aws-actions/configure-aws-credentials@v2
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ env.CI_MQTT5_ROLE }}
aws-region: ${{ env.AWS_DEFAULT_REGION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
force: true

- name: configure AWS credentials (Release)
uses: aws-actions/configure-aws-credentials@v2
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::180635532705:role/CI_V2_RELEASE_S3_ROLE
aws-region: us-east-1
Expand Down
4 changes: 2 additions & 2 deletions codebuild/cd/publish-to-prod-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ phases:
- sudo apt-get install python3 python3-pip -y
- export PATH=$PATH:$HOME/.local/bin
- python3 -m pip install --user --upgrade pip
- python3 -m pip install --user --upgrade twine setuptools wheel awscli PyOpenSSL six
- python3 -m pip install --user --upgrade twine awscli build setuptools
- echo "\nBuild version data:"
- echo "\nPython Version:"; python3 --version
pre_build:
Expand All @@ -24,7 +24,7 @@ phases:
build:
commands:
- echo Build started on `date`
- python3 setup.py sdist bdist_wheel
- python3 -m build
- python3 -m twine upload -r pypi dist/*
post_build:
commands:
Expand Down
4 changes: 2 additions & 2 deletions codebuild/cd/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ phases:
- sudo apt-get install python3 python3-pip -y
- export PATH=$PATH:$HOME/.local/bin
- python3 -m pip install --user --upgrade pip
- python3 -m pip install --user --upgrade twine setuptools wheel awscli PyOpenSSL six
- python3 -m pip install --user --upgrade twine awscli build setuptools
- echo "\nBuild version data:"
- echo "\nPython Version:"; python3 --version
pre_build:
Expand All @@ -24,7 +24,7 @@ phases:
build:
commands:
- echo Build started on `date`
- python3 setup.py sdist bdist_wheel
- python3 -m build
- python3 -m twine upload -r testpypi dist/*
post_build:
commands:
Expand Down