Skip to content

Commit

Permalink
Fix Release workflow version reference
Browse files Browse the repository at this point in the history
  • Loading branch information
aitorpazos committed Sep 6, 2021
1 parent d76ce97 commit bc63df4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Build Debian Buster ISO
id: build_buster_iso
run: make buildDebianBuster
Expand Down Expand Up @@ -64,6 +67,9 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Build Ubuntu Bionic ISO
id: build_bionic_iso
run: make buildUbuntuBionic
Expand Down Expand Up @@ -92,6 +98,9 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Build Ubuntu Focal ISO
id: build_focal_iso
run: make buildUbuntuFocal
Expand Down

0 comments on commit bc63df4

Please sign in to comment.