Skip to content

Commit

Permalink
Fix env var typo and update actions repo to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
MSECode authored and valegagge committed Sep 20, 2023
1 parent 2961c08 commit d2bf9d8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Get Version
id: get_version
run: |
Expand All @@ -39,7 +39,7 @@ jobs:
echo "my REPOSITORY_NAME_ONLY is ${{ env.REPOSITORY_NAME_ONLY }} "
- name: Check Tag
id: check_tag
uses: mukunku/tag-exists-action@v1.2.0
uses: mukunku/tag-exists-action@v1.4.0
with:
tag: ${{ steps.get_version.outputs.version }}
- name: degug check tag
Expand All @@ -59,7 +59,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.get_version.outputs.version }}
release_name: ${{ REPOSITORY_NAME_ONLY }} ${{ steps.get_version.outputs.version }}
release_name: ${{ env.REPOSITORY_NAME_ONLY }} ${{ steps.get_version.outputs.version }}
body: |
Release ${{ steps.get_version.outputs.version }}
draft: false
Expand All @@ -76,7 +76,7 @@ jobs:
# client-payload: '{"version": "${{ github.event.client_payload.version }}"}'

- name: Repository Dispatch for building images
uses: peter-evans/repository-dispatch@v1
uses: peter-evans/repository-dispatch@v2
env:
GITHUB_APPS_TOKEN: ${{ steps.get_workflow_token.outputs.token }}
with:
Expand Down

0 comments on commit d2bf9d8

Please sign in to comment.