forked from microsoft/terraform-provider-azuredevops
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DEVP-1741] Fix bugs in semver build (#6)
(cherry picked from commit b025e6c56b6b45a56d61159034f442625d11a6ba)
- Loading branch information
1 parent
458f836
commit 5567210
Showing
2 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
ARG SEMVER_VERSION=broken-semver | ||
FROM quay.io/babylonhealth/azure-terraform:${SEMVER_VERSION} | ||
ARG SHA_VERSION | ||
|
||
FROM quay.io/babylonhealth/azure-terraform:${SHA_VERSION} | ||
|
||
ARG SEMVER_VERSION | ||
|
||
RUN \ | ||
cd /root/.terraform.d/plugins/babylonhealth.com/babylonhealth/azuredevops/ \ | ||
&& mv $(find . -type d) ${SEMVER_VERSION} | ||
&& mv $(ls) ${SEMVER_VERSION} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters