forked from paritytech/polkadot-testnet-faucet
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add commit signing * fix missing flag * add missing secrets to check vars * fix linting
- Loading branch information
1 parent
ff3129e
commit c394e29
Showing
3 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,11 +72,21 @@ jobs: | |
cd ${aleph_path}/${apps_name}/faucet/overlays/devnet/${{ env.REGIONS_AWS }} | ||
kustomize edit set image "faucet-image-placeholder=${{ env.RELEASE_IMAGE }}" | ||
- name: Configure signing key | ||
# yamllint disable rule:line-length | ||
run: | | ||
echo ${{ secrets.AUTOCOMMIT_GPG_KEY_B64 }} | base64 -d > key.gpg | ||
gpg --import key.gpg | ||
rm key.gpg | ||
git config --global user.signingkey $(echo ${{ secrets.AUTOCOMMIT_GPG_KEY_FINGERPRINT }} | tail -c 17) | ||
# yamllint enable rule:line-length | ||
|
||
- name: GIT | Commit changes to argocd apps repository. | ||
uses: EndBug/[email protected] | ||
with: | ||
author_name: ${{ secrets.AUTOCOMMIT_AUTHOR }} | ||
author_email: ${{ secrets.AUTOCOMMIT_EMAIL }} | ||
commit: "-S" | ||
# yamllint disable-line rule:line-length | ||
message: "Updating devnet faucet docker image tag to: ${{ steps.get-image-name.outputs.image }}" | ||
add: "*.yaml" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,11 +72,21 @@ jobs: | |
cd ${aleph_path}/${apps_name}/faucet/overlays/testnet/${{ env.REGIONS_AWS }} | ||
kustomize edit set image "faucet-image-placeholder=${{ env.RELEASE_IMAGE }}" | ||
- name: Configure signing key | ||
# yamllint disable rule:line-length | ||
run: | | ||
echo ${{ secrets.AUTOCOMMIT_GPG_KEY_B64 }} | base64 -d > key.gpg | ||
gpg --import key.gpg | ||
rm key.gpg | ||
git config --global user.signingkey $(echo ${{ secrets.AUTOCOMMIT_GPG_KEY_FINGERPRINT }} | tail -c 17) | ||
# yamllint enble rule:line-length | ||
|
||
- name: GIT | Commit changes to argocd apps repository. | ||
uses: EndBug/[email protected] | ||
with: | ||
author_name: ${{ secrets.AUTOCOMMIT_AUTHOR }} | ||
author_email: ${{ secrets.AUTOCOMMIT_EMAIL }} | ||
commit: -S | ||
# yamllint disable-line rule:line-length | ||
message: "Updating testnet faucet docker image tag to: ${{ steps.get-image-name.outputs.image }}" | ||
add: "*.yaml" | ||
|