Skip to content

Commit 2fb4953

Browse files
committed
Update upm.yaml
1 parent 63fca22 commit 2fb4953

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/upm.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
- name: Pack dev UPM packages
1818
if: github.event_name == 'pull_request'
1919
run: |
20-
${{ github.workspace }}/Pipelines/Scripts/pack-upm.ps1 -ProjectRoot: ${{ github.workspace }} -OutputDirectory: ${{ github.workspace }}/build/upm/output -PrereleaseTag: dev -Revision: $(Get-Date -Format "yyMMddHHmmss") -BuildNumber: ${{ github.run_number }}
20+
${{ github.workspace }}/Pipelines/Scripts/pack-upm.ps1 -ProjectRoot: ${{ github.workspace }} -OutputDirectory: ${{ github.workspace }}/build/upm/output -PrereleaseTag: dev -Revision: ${{ github.run_number }} -BuildNumber: ${{ github.run_number }}
2121
shell: pwsh
2222

2323
- name: Pack preview UPM packages
2424
if: github.event_name == 'push'
2525
run: |
26-
${{ github.workspace }}/Pipelines/Scripts/pack-upm.ps1 -ProjectRoot: ${{ github.workspace }} -OutputDirectory: ${{ github.workspace }}/build/upm/output -PrereleaseTag: pre -Revision: $(Get-Date -Format "yyMMddHHmmss") -BuildNumber: ${{ github.run_number }}
26+
${{ github.workspace }}/Pipelines/Scripts/pack-upm.ps1 -ProjectRoot: ${{ github.workspace }} -OutputDirectory: ${{ github.workspace }}/build/upm/output -PrereleaseTag: pre -Revision: ${{ github.run_number }} -BuildNumber: ${{ github.run_number }}
2727
shell: pwsh
2828

2929
- uses: actions/upload-artifact@v4
@@ -33,7 +33,6 @@ jobs:
3333
path: ${{ github.workspace }}/build/upm/output
3434
retention-days: 1
3535

36-
3736
- uses: actions/upload-artifact@v4
3837
if: github.event_name == 'push'
3938
with:

0 commit comments

Comments
 (0)