Skip to content

Commit f805c23

Browse files
Include '.flatpak' suffix in artifact name to avoid conflicts with other artifacts
1 parent 7893669 commit f805c23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flatpak-builder/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ const run = async (config) => {
394394
const artifactClient = new DefaultArtifactClient()
395395
core.info('Uploading artifact...')
396396
// Append the arch to the bundle name to prevent conflicts in multi-arch jobs
397-
const bundleName = config.bundle.replace('.flatpak', '') + `-${config.arch}`
397+
const bundleName = config.bundle.replace('.flatpak', '') + `-${config.arch}.flatpak`
398398
return artifactClient.uploadArtifact(bundleName, [config.bundle], '.', {
399399
continueOnError: false
400400
})

0 commit comments

Comments
 (0)