Skip to content

Commit

Permalink
chore: release action comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudLigny committed Feb 3, 2025
1 parent 469411d commit 11c66d0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ jobs:
- name: Run tests
run: composer run-script test

- name: Get previous release
- name: Get previous release # for changelog generation
id: previous_release
run: |
echo "tag=$(git describe --abbrev=0 --tags `git rev-list --tags --skip=1 --max-count=1`)" >> $GITHUB_OUTPUT
- name: Set current version
- name: Set current version # variable and create `VERSION` file
id: get_version
run: |
echo "version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
php cecil.phar build skeleton -vvv
php cecil.phar show:content skeleton
- name: Calculate SHA256 checksum
- name: Calculate SHA256 checksum # for Brew formula
id: sha256
run: |
echo "shasum=$(shasum -a 256 ./dist/cecil.phar | awk '{printf $1}')" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
dist/cecil.phar.asc
if-no-files-found: error

deploy_to_github:
deploy_to_github: # GitHub release
name: Deploy to GitHub
runs-on: ubuntu-latest
needs: build
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
filter: (^[U|u]pdate|Merge)

- name: Update release
- name: Update release # with changelog
id: update_release
uses: tubone24/[email protected]
env:
Expand All @@ -178,7 +178,7 @@ jobs:
- Download: <https://cecil.app/download/>
- Self Update: `php cecil.phar self-update`
deploy_to_website:
deploy_to_website: # https://cecil.app
name: Deploy to website
runs-on: ubuntu-latest
needs: build
Expand Down

0 comments on commit 11c66d0

Please sign in to comment.