Skip to content
Draft
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: 4 additions & 0 deletions .github/workflows/release-10_branchoff-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@ jobs:
- name: Install pgpkkms
run: |
# Install pgpkms that is used to sign commits
<<<<<<< HEAD
pip install git+https://github.com/paritytech-release/pgpkms.git@e7f806f99e9be5c52f0b4a536b7d4ef9c3e695ed
=======
pip install git+https://github.com/paritytech-release/pgpkms.git@dc30e487d47f53d069831a4306377a3ec32638ae
>>>>>>> 8416b6e6 ([CI/CD] Update pgpkms tool (#11400))

- name: Generate content write token for the release automation
id: generate_write_token
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release-11_rc-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ jobs:
- name: Install pgpkkms
run: |
# Install pgpkms that is used to sign commits
<<<<<<< HEAD
pip install git+https://github.com/paritytech-release/pgpkms.git@e7f806f99e9be5c52f0b4a536b7d4ef9c3e695ed
=======
pip install git+https://github.com/paritytech-release/pgpkms.git@dc30e487d47f53d069831a4306377a3ec32638ae
>>>>>>> 8416b6e6 ([CI/CD] Update pgpkms tool (#11400))

- name: Generate content write token for the release automation
id: generate_write_token
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-60_create-old-release-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install pgpkkms
run: |
# Install pgpkms that is used to sign commits
pip install git+https://github.com/paritytech-release/pgpkms.git@6cb1cecce1268412189b77e4b130f4fa248c4151
pip install git+https://github.com/paritytech-release/pgpkms.git@dc30e487d47f53d069831a4306377a3ec32638ae

- name: Generate content write token for the release automation
id: generate_write_token
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Install pgpkms
run: |
# Install pgpkms that is used to sign commits
pip install git+https://github.com/paritytech-release/pgpkms.git@6cb1cecce1268412189b77e4b130f4fa248c4151
pip install git+https://github.com/paritytech-release/pgpkms.git@dc30e487d47f53d069831a4306377a3ec32638ae
# Find and display where pgpkms-git is installed
echo "pgpkms-git location: $(which pgpkms-git)"
ls -la $(which pgpkms-git)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-80_publish-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Install pgpkms
run: |
# Install pgpkms that is used to sign commits
pip install git+https://github.com/paritytech-release/pgpkms.git@6cb1cecce1268412189b77e4b130f4fa248c4151
pip install git+https://github.com/paritytech-release/pgpkms.git@dc30e487d47f53d069831a4306377a3ec32638ae

- name: Derive stable branch from release name
id: derive_branch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-reusable-publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y python3-pip reprepro rpm createrepo-c

python3 -m pip install --user awscli "pgpkms @ git+https://github.com/paritytech-release/pgpkms.git@6cb1cecce1268412189b77e4b130f4fa248c4151"
python3 -m pip install --user awscli "pgpkms @ git+https://github.com/paritytech-release/pgpkms.git@dc30e487d47f53d069831a4306377a3ec32638ae"

# Ensure ~/.local/bin is in PATH right now and for later steps
export PATH=$HOME/.local/bin:$PATH
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/release-reusable-rc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,11 @@ jobs:
- name: Install pgpkkms
run: |
# Install pgpkms that is used to sign built artifacts
<<<<<<< HEAD
python3 -m pip install "pgpkms @ git+https://github.com/paritytech-release/pgpkms.git@e7f806f99e9be5c52f0b4a536b7d4ef9c3e695ed"
=======
python3 -m pip install "pgpkms @ git+https://github.com/paritytech-release/pgpkms.git@dc30e487d47f53d069831a4306377a3ec32638ae"
>>>>>>> 8416b6e6 ([CI/CD] Update pgpkms tool (#11400))
which pgpkms

- name: Checkout sources
Expand Down Expand Up @@ -242,12 +246,19 @@ jobs:
with:
subject-path: ${{ env.ARTIFACTS_PATH }}/${{ matrix.binaries }}

<<<<<<< HEAD
- name: Sign artifacts
working-directory: ${{ env.ARTIFACTS_PATH }}
env:
BINARY_NAME: ${{ matrix.binaries }}
run: |
python3 -m pgpkms sign --input "$BINARY_NAME" -o "${BINARY_NAME}.asc"
=======
- name: Install pgpkkms
run: |
# Install pgpkms that is used to sign built artifacts
python3 -m pip install "pgpkms @ git+https://github.com/paritytech-release/pgpkms.git@dc30e487d47f53d069831a4306377a3ec32638ae" --break-system-packages
>>>>>>> 8416b6e6 ([CI/CD] Update pgpkms tool (#11400))

- name: Check sha256 ${{ matrix.binaries }}
working-directory: ${{ env.ARTIFACTS_PATH }}
Expand Down
Loading