1
1
import * as core from '@actions/core'
2
2
import simpleGit from 'simple-git'
3
3
import * as fs from 'fs'
4
+ import * as path from 'node:path'
4
5
5
6
function notEmpty ( p : string | undefined ) {
6
7
return p && p . trim ( ) . length > 0
@@ -19,6 +20,7 @@ export async function run(): Promise<void> {
19
20
const tagVersion : string = core . getInput ( 'tagVersion' )
20
21
const remoteRepo : string = core . getInput ( 'remoteRepo' )
21
22
let remoteRepoUrl : string = core . getInput ( 'remoteRepoUrl' )
23
+ const packageFileOnly : string = core . getInput ( 'packageFileOnly' )
22
24
let localPackagePath : string = core . getInput ( 'localPackagePath' )
23
25
let remotePackagePath : string = core . getInput ( 'remotePackagePath' )
24
26
const remoteBranch : string = core . getInput ( 'remoteBranch' )
@@ -28,6 +30,7 @@ export async function run(): Promise<void> {
28
30
core . debug ( `tagVersion: ${ tagVersion } ` )
29
31
core . debug ( `remoteRepo: ${ remoteRepo } ` )
30
32
core . debug ( `remoteRepoUrl: ${ remoteRepoUrl } ` )
33
+ core . debug ( `packageFileOnly: ${ packageFileOnly } ` )
31
34
core . debug ( `localPackagePath: ${ localPackagePath } ` )
32
35
core . debug ( `remotePackagePath: ${ remotePackagePath } ` )
33
36
core . debug ( `remoteBranch: ${ remoteBranch } ` )
@@ -36,11 +39,11 @@ export async function run(): Promise<void> {
36
39
remoteRepoUrl = notEmpty ( remoteRepoUrl ) ? remoteRepoUrl : `https://github.com/${ remoteRepo } .git`
37
40
localPackagePath = notEmpty ( localPackagePath ) ? localPackagePath : ''
38
41
remotePackagePath = notEmpty ( remotePackagePath ) ? remotePackagePath : ''
42
+ const packageFileOnlyBool = packageFileOnly === 'true'
39
43
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' )
44
47
45
48
try {
46
49
const git = simpleGit ( )
@@ -49,15 +52,42 @@ export async function run(): Promise<void> {
49
52
await git . raw ( 'branch' , 'remote_swift_package' , 'FETCH_HEAD' )
50
53
await git . raw ( 'worktree' , 'add' , '.git/tmp/remote_swift_package' , 'remote_swift_package' )
51
54
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
+ }
54
78
55
79
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
+ }
61
91
} catch ( error ) {
62
92
// Fail the workflow run if an error occurs
63
93
if ( error instanceof Error ) core . setFailed ( error . message )
0 commit comments