Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions .github/workflows/publish-alloy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,26 +223,6 @@ jobs:
go-version-file: go.mod
cache: false

- name: Download dist
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: dist
path: dist

# Overwrite the original Windows Alloy executable with the signed version
- name: Download signed Windows executable
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: windows-executables-signed
path: .

# Overwrite the original Windows Alloy installer with the signed version
- name: Download signed Windows installer
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: windows-installer-signed
path: dist

# A GitHub App is used to create the release instead of github-actions so that submit-winget-manifest is triggered when the release is published
- name: Get GitHub app secrets
id: get-secrets
Expand All @@ -269,6 +249,26 @@ jobs:
token: ${{ steps.app-token.outputs.token }}
persist-credentials: false

- name: Download dist
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: dist
path: dist

# Overwrite the original Windows Alloy executable with the signed version
- name: Download signed Windows executable
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: windows-executables-signed
path: .

# Overwrite the original Windows Alloy installer with the signed version
- name: Download signed Windows installer
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: windows-installer-signed
path: dist

- name: Publish
run: |
VERSION="${GITHUB_REF_NAME}" RELEASE_DOC_TAG=$(echo "${GITHUB_REF_NAME}" | awk -F '.' '{print $1"."$2}') ./tools/release
Expand Down
Loading