Fix name of steps in readme-release.yml GitHub Action

pull/257/head
Michele Locati 2021-01-16 21:20:07 +01:00
parent db818367b0
commit ab356c2d85
No known key found for this signature in database
GPG Key ID: 98B7CE2E7234E28B
1 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ jobs:
git commit -m '[skip ci] Automatically update README.md' git commit -m '[skip ci] Automatically update README.md'
git push git push
fi fi
- name: Looking for the recent version tags - name: Look for the recent version tags
if: > if: >
(github.event_name == 'push' && github.ref == 'refs/heads/master') (github.event_name == 'push' && github.ref == 'refs/heads/master')
|| (github.event_name == 'create' && github.event.ref_type == 'tag') || (github.event_name == 'create' && github.event.ref_type == 'tag')
@ -68,7 +68,7 @@ jobs:
fi fi
printf 'VERSIONTAG_LAST=%s\n' "$VERSIONTAG_LAST" >> "$GITHUB_ENV" printf 'VERSIONTAG_LAST=%s\n' "$VERSIONTAG_LAST" >> "$GITHUB_ENV"
printf 'VERSIONTAG_PENULTIMATE=%s\n' "$VERSIONTAG_PENULTIMATE" >> "$GITHUB_ENV" printf 'VERSIONTAG_PENULTIMATE=%s\n' "$VERSIONTAG_PENULTIMATE" >> "$GITHUB_ENV"
- name: Checking if we need to create a version tag after a push - name: Check if we need to create a version tag after a push
if: github.event_name == 'push' && github.ref == 'refs/heads/master' if: github.event_name == 'push' && github.ref == 'refs/heads/master'
run: | run: |
VERSIONTAG_THIS= VERSIONTAG_THIS=
@ -157,7 +157,7 @@ jobs:
with: with:
username: mlocati username: mlocati
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build docker image and push to Docker Hub - name: Build docker image
if: env.VERSIONTAG_THIS != '' if: env.VERSIONTAG_THIS != ''
run: docker build --tag "mlocati/php-extension-installer:$VERSIONTAG_THIS" --tag mlocati/php-extension-installer:latest . run: docker build --tag "mlocati/php-extension-installer:$VERSIONTAG_THIS" --tag mlocati/php-extension-installer:latest .
- name: Push docker image to Docker Hub - name: Push docker image to Docker Hub