Skip to content

Commit

Permalink
Run build workflow on push to tags (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
vegarsti committed Jul 3, 2024
1 parent 6d60696 commit af309d7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
push:
branches:
- main
tags:
- '*'

jobs:
build:
Expand All @@ -19,6 +21,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- 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 }}"
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
Expand Down

0 comments on commit af309d7

Please sign in to comment.