Skip to content

Commit 96323ef

Browse files
committed
Copy all source
1 parent 9cd9141 commit 96323ef

File tree

4 files changed

+94
-24
lines changed

4 files changed

+94
-24
lines changed

action.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ inputs:
1515
required: false
1616
tagVersion:
1717
description: 'Version string to use in the tag. Should follow semver rules: https://semver.org/.'
18-
required: true
18+
required: false
1919
remoteRepo:
2020
description: 'Repo we are publishing to in [org]/[repo] format.'
2121
required: true
@@ -25,6 +25,8 @@ inputs:
2525
remoteRepoUrl:
2626
description: 'Full url for the repo we are publishing to. Defaults to "https://github.com/${remoteRepo}.git".'
2727
required: false
28+
packageFileOnly:
29+
description: 'Set to "true" if you only want to share the `Package.swift` file.'
2830
localPackagePath:
2931
description: 'Local path to Package.swift'
3032
required: false

dist/index.js

+49-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

+41-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import * as core from '@actions/core'
22
import simpleGit from 'simple-git'
33
import * as fs from 'fs'
4+
import * as path from 'node:path'
45

56
function notEmpty(p: string | undefined) {
67
return p && p.trim().length > 0
@@ -19,6 +20,7 @@ export async function run(): Promise<void> {
1920
const tagVersion: string = core.getInput('tagVersion')
2021
const remoteRepo: string = core.getInput('remoteRepo')
2122
let remoteRepoUrl: string = core.getInput('remoteRepoUrl')
23+
const packageFileOnly: string = core.getInput('packageFileOnly')
2224
let localPackagePath: string = core.getInput('localPackagePath')
2325
let remotePackagePath: string = core.getInput('remotePackagePath')
2426
const remoteBranch: string = core.getInput('remoteBranch')
@@ -28,6 +30,7 @@ export async function run(): Promise<void> {
2830
core.debug(`tagVersion: ${tagVersion}`)
2931
core.debug(`remoteRepo: ${remoteRepo}`)
3032
core.debug(`remoteRepoUrl: ${remoteRepoUrl}`)
33+
core.debug(`packageFileOnly: ${packageFileOnly}`)
3134
core.debug(`localPackagePath: ${localPackagePath}`)
3235
core.debug(`remotePackagePath: ${remotePackagePath}`)
3336
core.debug(`remoteBranch: ${remoteBranch}`)
@@ -36,11 +39,11 @@ export async function run(): Promise<void> {
3639
remoteRepoUrl = notEmpty(remoteRepoUrl) ? remoteRepoUrl : `https://github.com/${remoteRepo}.git`
3740
localPackagePath = notEmpty(localPackagePath) ? localPackagePath : ''
3841
remotePackagePath = notEmpty(remotePackagePath) ? remotePackagePath : ''
42+
const packageFileOnlyBool = packageFileOnly === 'true'
3943

40-
assertNotEmpty(commitMessage, "'commitMessage' cannot be empty")
41-
assertNotEmpty(tagVersion, "'tagVersion' cannot be empty")
42-
assertNotEmpty(remoteRepo, "'remoteRepo' cannot be empty")
43-
assertNotEmpty(remoteBranch, "'remoteBranch' cannot be empty")
44+
assertNotEmpty(commitMessage, '\'commitMessage\' cannot be empty')
45+
assertNotEmpty(remoteRepo, '\'remoteRepo\' cannot be empty')
46+
assertNotEmpty(remoteBranch, '\'remoteBranch\' cannot be empty')
4447

4548
try {
4649
const git = simpleGit()
@@ -49,15 +52,42 @@ export async function run(): Promise<void> {
4952
await git.raw('branch', 'remote_swift_package', 'FETCH_HEAD')
5053
await git.raw('worktree', 'add', '.git/tmp/remote_swift_package', 'remote_swift_package')
5154

52-
const packageSource = fs.readFileSync(`.${localPackagePath}/Package.swift`, 'utf8')
53-
fs.writeFileSync(`.git/tmp/remote_swift_package${remotePackagePath}/Package.swift`, packageSource)
55+
if (packageFileOnlyBool) {
56+
const packageSource = fs.readFileSync(`.${localPackagePath}/Package.swift`, 'utf8')
57+
fs.writeFileSync(`.git/tmp/remote_swift_package${remotePackagePath}/Package.swift`, packageSource)
58+
} else {
59+
const files = fs.readdirSync('.')
60+
61+
for (const file of files) {
62+
if (file === '.git' || file === '.github') {
63+
continue
64+
}
65+
66+
const filePath = path.join('.', file) // Get full path
67+
const stats = fs.statSync(filePath) // Get file stats
68+
69+
if (stats.isFile()) {
70+
fs.copyFileSync(filePath, `.git/tmp/remote_swift_package/${file}`)
71+
console.log(`File: ${filePath}`)
72+
} else if (stats.isDirectory()) {
73+
fs.cpSync(filePath, `.git/tmp/remote_swift_package/${file}`, { recursive: true })
74+
console.log(`Directory: ${filePath}`)
75+
}
76+
}
77+
}
5478

5579
const worktreeGit = simpleGit('.git/tmp/remote_swift_package')
56-
await worktreeGit.raw('fetch', '--tags') // Get release tag
57-
await worktreeGit.add('.')
58-
await worktreeGit.commit(commitMessage)
59-
await worktreeGit.raw('tag', '-fa', tagVersion, '-m', tagMessage)
60-
await worktreeGit.raw('push', '--follow-tags', remoteRepoUrl, `remote_swift_package:${remoteBranch}`)
80+
if (tagVersion) {
81+
await worktreeGit.raw('fetch', '--tags') // Get release tag
82+
await worktreeGit.add('.')
83+
await worktreeGit.commit(commitMessage)
84+
await worktreeGit.raw('tag', '-fa', tagVersion, '-m', tagMessage)
85+
await worktreeGit.raw('push', '--follow-tags', remoteRepoUrl, `remote_swift_package:${remoteBranch}`)
86+
} else {
87+
await worktreeGit.add('.')
88+
await worktreeGit.commit(commitMessage)
89+
await worktreeGit.raw('push', remoteRepoUrl, remoteBranch)
90+
}
6191
} catch (error) {
6292
// Fail the workflow run if an error occurs
6393
if (error instanceof Error) core.setFailed(error.message)

0 commit comments

Comments
 (0)