fix tags.
Some checks failed
Some checks failed
This commit is contained in:
parent
14dd4c8ee6
commit
2a69cdc84b
@ -7,11 +7,24 @@ jobs:
|
||||
steps:
|
||||
- name: Clone repository
|
||||
run: |
|
||||
$branch = "${{ github.ref }}" -replace '^refs/heads/', ''
|
||||
$ref = "${{ github.ref }}"
|
||||
if ($ref -like 'refs/heads/*') {
|
||||
$branch = $ref -replace '^refs/heads/', ''
|
||||
} elseif ($ref -like 'refs/tags/*') {
|
||||
$branch = $ref -replace '^refs/tags/', ''
|
||||
} else {
|
||||
$branch = $ref
|
||||
}
|
||||
git clone --depth 1 --branch=$branch https://${{ secrets.GIT_USERNAME }}:${{ secrets.GIT_PASSWORD }}@amass.fun/gitea/${{ gitea.repository }}.git .
|
||||
git checkout ${{ github.sha }}
|
||||
- name: Build and deploy
|
||||
run: |
|
||||
resources/build.ps1 build
|
||||
resources/build.ps1 deploy
|
||||
resources/build.ps1 changelog
|
||||
resources/build.ps1 changelog
|
||||
- name: Upload Gitea Release
|
||||
uses: akkuman/gitea-release-action@v1
|
||||
with:
|
||||
body_path: build/CHANGELOG.txt
|
||||
files: |-
|
||||
build/SmartLockerTools_v*.zip
|
@ -10,7 +10,14 @@ jobs:
|
||||
steps:
|
||||
- name: Clone repository
|
||||
run: |
|
||||
$branch = "${{ github.ref }}" -replace '^refs/tags/', ''
|
||||
$ref = "${{ github.ref }}"
|
||||
if ($ref -like 'refs/heads/*') {
|
||||
$branch = $ref -replace '^refs/heads/', ''
|
||||
} elseif ($ref -like 'refs/tags/*') {
|
||||
$branch = $ref -replace '^refs/tags/', ''
|
||||
} else {
|
||||
$branch = $ref
|
||||
}
|
||||
git clone --depth 1 --branch=$branch https://${{ secrets.GIT_USERNAME }}:${{ secrets.GIT_PASSWORD }}@amass.fun/gitea/${{ gitea.repository }}.git .
|
||||
git checkout ${{ github.sha }}
|
||||
- name: Build and deploy
|
||||
|
Loading…
Reference in New Issue
Block a user