diff --git a/.github/workflows/tool-create-release.yml b/.github/workflows/tool-create-release.yml index 83daec62..9ea3fe29 100644 --- a/.github/workflows/tool-create-release.yml +++ b/.github/workflows/tool-create-release.yml @@ -18,6 +18,7 @@ jobs: create_release: name: Create Release runs-on: ubuntu-latest + environment: dev env: tag: ${{ inputs.tag }} steps: @@ -27,7 +28,7 @@ jobs: echo "Error: Tag must be in the format X.Y.Z (e.g. 1.0.0)" exit 1 fi - + - name: Configure AWS Credentials id: credentials uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0 @@ -40,7 +41,7 @@ jobs: - name: Checkout uses: actions/checkout@v6 - - name: Create Github tag + - name: Create GitHub tag run: | git config --global user.name "github-actions" git config --global user.email "github@github.com" @@ -73,5 +74,3 @@ jobs: docker tag $repo:$IMAGE_SHA $repo:$tag docker push $repo:$tag done - -