forked from composer/composer
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
26a5873
commit 57cf764
Showing
3 changed files
with
16 additions
and
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,41 +56,3 @@ jobs: | |
asset_path: ./composer.phar | ||
asset_name: composer.phar | ||
asset_content_type: application/octet-stream | ||
|
||
- name: Configure GPG key and sign phar | ||
run: | | ||
mkdir -p ~/.gnupg/ | ||
chmod 0700 ~/.gnupg/ | ||
echo "$GPG_SIGNING_KEY" > ~/.gnupg/private.key | ||
gpg --import ~/.gnupg/private.key | ||
gpg -u [email protected] --detach-sign --output composer.phar.asc composer.phar | ||
env: | ||
GPG_SIGNING_KEY: | | ||
${{ secrets.GPG_KEY_161DFBE342889F01DDAC4E61CBB3D576F2A0946F }} | ||
- name: Upload phar signature | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ./composer.phar.asc | ||
asset_name: composer.phar.asc | ||
asset_content_type: application/octet-stream | ||
|
||
# This step requires a secret token with `pull` access to composer/docker. The default | ||
# secrets.GITHUB_TOKEN is scoped to this repository only which is not sufficient. | ||
- name: "Open issue @ Docker repository" | ||
uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }} | ||
script: | | ||
// github.ref value looks like 'refs/tags/TAG', cleanup | ||
const tag = "${{ github.ref }}".replace(/refs\/tags\//, ''); | ||
// create new issue on Docker repository | ||
github.rest.issues.create({ | ||
owner: "${{ github.repository_owner }}", | ||
repo: "docker", | ||
title: `New Composer tag: ${ tag }`, | ||
body: `https://github.com/${{ github.repository }}/releases/tag/${ tag }`, | ||
}); |
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