Update Windows profile build workflow to include version bump step

This commit is contained in:
Mauro Balades
2024-07-22 19:08:11 +02:00
parent f7970fb004
commit ab0ca282ff
2 changed files with 12 additions and 1 deletions

View File

@@ -195,7 +195,7 @@ jobs:
uses: ./.github/workflows/windows-profile-build.yml
permissions:
contents: write
needs: [build-data]
needs: [windows-step-1, build-data]
with:
build-version: ${{ needs.build-data.outputs.version }}
profile-data-path-archive: zen-windows-x86_64-profile-data-and-jarlog.zip

View File

@@ -20,8 +20,19 @@ jobs:
uses: actions/checkout@v4
with:
repository: Floorp-Projects/Floorp
clean: true
- uses: actions/download-artifact@v4
name: Download artifact
with:
path: C:\artifact
- name: Unpack artifact
run: |
cd C:\artifact
ls
7z x ${{ inputs.profile-data-path-archive }}
ls
- name: Setup
run: |