From df79070a92c82a5b68b543e09957269b4ec4c11f Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Fri, 10 Jun 2022 11:17:09 -0500 Subject: [PATCH] ci: Use inputs context for docker workflow dispatch Announced here: https://github.blog/changelog/2022-06-10-github-actions-inputs-unified-across-manual-and-reusable-workflows/ --- .github/workflows/docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 1fc3d010..2f6d882f 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -29,8 +29,8 @@ on: type: boolean env: - SHOULD_PUBLISH: ${{ github.event_name == 'release' || github.event.inputs.should_publish == 'true' }} - VERSION: ${{ github.event.release.tag_name || github.event.inputs.release_tag }} + SHOULD_PUBLISH: ${{ github.event_name == 'release' || inputs.should_publish == 'true' }} + VERSION: ${{ github.event.release.tag_name || inputs.release_tag }} jobs: docker: