mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-01-11 19:44:44 +00:00
removed a set of $()
This commit is contained in:
5
.github/workflows/docker.yml
vendored
5
.github/workflows/docker.yml
vendored
@@ -124,12 +124,13 @@ jobs:
|
||||
- name: Unzip Build file
|
||||
run: |
|
||||
Get-ChildItem .\*.zip | Expand-Archive -DestinationPath .\
|
||||
Remove-Item -Path .\ -include @("*.zip")
|
||||
Remove-Item -Path .\*.zip
|
||||
- name: Check directory again
|
||||
run: Get-ChildItem ./
|
||||
- name: Copy build output and push
|
||||
shell: powershell
|
||||
run: |
|
||||
git checkout -b $($Env:GITHUB_REF -replace "refs/heads/")
|
||||
git config user.email "actions@pepperdash.com"
|
||||
git config user.name "GitHub Actions"
|
||||
git add .
|
||||
@@ -137,7 +138,7 @@ jobs:
|
||||
Write-Host $commit
|
||||
git commit -m $commit
|
||||
git tag $($Env:VERSION)
|
||||
git push --set-upstream origin $($($Env:GITHUB_REF) -Replace "refs/heads/") --force
|
||||
git push --set-upstream origin $($Env:GITHUB_REF -Replace "refs/heads/") --force
|
||||
git push --tags origin
|
||||
- name: Check Directory
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user