Skip to content

Commit

Permalink
fix: workflow now should fetch tags correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
BooterMan98 committed Aug 16, 2024
1 parent 6858262 commit a6621db
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
-
name: Checkout
uses: actions/checkout@v4
with:
fetch-tags: true

name: Set up QEMU
uses: docker/setup-qemu-action@v1
Expand Down Expand Up @@ -57,7 +59,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4
with:
fetch-tags: true
- uses: actions/setup-node@v4
# Runs a single command using the runners shell
- name: Install and Build
Expand Down

0 comments on commit a6621db

Please sign in to comment.