Skip to content

Commit

Permalink
fix(github/workflow): checkout git tags and beautify texts (#783)
Browse files Browse the repository at this point in the history
* fix(github/workflow): checkout git tags

* chore: beautify workflow texts
  • Loading branch information
rti authored Oct 4, 2024
1 parent fecf15b commit da94584
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build_publish_image_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ jobs:
fi
- uses: actions/checkout@v4
with:
fetch-tags: true

- uses: ./.github/actions/setup-environment
with:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
- wikibase
- All projects (images and deploy) with unreleased changes
dry_run:
description: "Only log what will be done, don't do it yet."
description: "Dry run, don't do it yet."
type: boolean
required: true
default: true
Expand All @@ -33,6 +33,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
fetch-tags: true

- uses: ./.github/actions/setup-environment
with:
Expand All @@ -44,7 +46,7 @@ jobs:
username: wmdetravisbot
password: ${{ secrets.WBS_PUBLISH_TOKEN }}

- name: Git tag release
- name: Create release
run: |
set -e # abort on error
set -x # show commands
Expand Down

0 comments on commit da94584

Please sign in to comment.