Skip to content

test github tagging in actions #2

test github tagging in actions

test github tagging in actions #2

Workflow file for this run

name: Docker Image CI/CD Action
on:
push:
tags:
- '*'
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- name: GitHub Tag Name example
run: |
echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME"
echo "Tag name from github.ref_name: ${{ github.ref_name }}"