Skip to content

Commit

Permalink
chore(workflow): Upgrade actions version to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
ynhhoJ committed Jan 2, 2025
1 parent b37dd26 commit bbd7696
Showing 1 changed file with 97 additions and 93 deletions.
190 changes: 97 additions & 93 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20

- name: Get Package Version
run: echo "PACKAGE_VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV
Expand All @@ -31,22 +31,23 @@ jobs:

- name: Create Release
id: create-release
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const { data } = await github.rest.repos.createRelease({
owner: context.repo.owner,
repo: context.repo.repo,
tag_name: `pre-${process.env.PACKAGE_VERSION}`,
name: `Decky SDH-PlayTime pre-${process.env.PACKAGE_VERSION}#${process.env.COMMIT_HASH}`,
body: `Download the release platform below`,
tag_name: "nightly",
name: `SDH-PlayTime development (prerelease) build`,
body: `SDH-PlayTime ${process.env.PACKAGE_VERSION}-#${process.env.COMMIT_HASH}`,
draft: true,
prerelease: true
});
});
core.setOutput("tag", `pre-${process.env.PACKAGE_VERSION}-${process.env.COMMIT_HASH}`);
core.setOutput("tag", "nightly");
core.setOutput("release_id", data.id);
return data.id
return data.id
build-plugin:
needs: create-release
Expand All @@ -56,26 +57,26 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: "pre-release"
ref: "master"

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20

- name: Setup Pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
version: 6.0.2
version: 9

- name: Install Frontend Dependencies
run: pnpm install

- name: Build Decky SDH-PlayTime
uses: actions/github-script@v6
- name: Build plugin
uses: actions/github-script@v7
env:
release_id: ${{ needs.create-release.outputs.release_id }}
release_tag: ${{ needs.create-release.outputs.tag }}
Expand All @@ -91,77 +92,80 @@ jobs:
"main.py",
"README.md",
"LICENSE"
];

async function uploadReleaseAsset(name, contents) {
await github.rest.repos.uploadReleaseAsset({
owner: context.repo.owner,
repo: context.repo.repo,
release_id: process.env.release_id,
name: name,
data: contents
});
}

function copyDirRecursive(parentPath, contents, dest) {
for (const file of contents) {
const fileName = file.name;
const srcPath = path.join(cwdPath, parentPath, fileName);
const destPath = path.join(cwdPath, dest, fileName);

if (fs.lstatSync(srcPath).isDirectory()) {
const dirContents = fs.readdirSync(srcPath, { withFileTypes: true });
const dirDestPath = path.join(dest, fileName);
fs.mkdirSync(dirDestPath, { recursive: true });
copyDirRecursive(path.join(parentPath, fileName), dirContents, dirDestPath);
} else {
fs.copyFileSync(srcPath, destPath);
}
}
}

const cwdPath = path.resolve(process.cwd());

// * build the plugin with `pnpm build`
child_process.execSync("pnpm build");

// * once finished, make folder with all files in includeInBuild
const bundleWrapperPath = path.join(cwdPath, "bundle");
const bundlePath = path.join(bundleWrapperPath, "DeckySDH-PlayTime");
fs.mkdirSync(bundlePath, { recursive: true });
fs.mkdirSync(path.join(bundlePath, "dist"));

for (const fileToInclude of includeInBuild) {
const srcPath = path.join(cwdPath, fileToInclude);
const destPath = path.join(bundlePath, fileToInclude);

fs.copyFileSync(srcPath, destPath);
}

// * check contents of defaults
const defaultsPath = path.join(cwdPath, "defaults");
if (fs.existsSync(defaultsPath)) {
const defaultContents = fs.readdirSync(defaultsPath, { withFileTypes: true });
copyDirRecursive("defaults", defaultContents, `bundle${path.sep}DeckySDH-PlayTime`);
}

// * check contents of dist
const distPath = path.join(cwdPath, "dist");
if (fs.existsSync(distPath)) {
const distContents = fs.readdirSync(distPath, { withFileTypes: true });
copyDirRecursive("dist", distContents, `bundle${path.sep}DeckySDH-PlayTime${path.sep}`);
}

// * zip
child_process.execSync("pnpm i zip-a-folder");
const { zip, COMPRESSION_LEVEL } = require('zip-a-folder');

const outputZipPath = path.join(cwdPath, "bundle.zip");
await zip(bundleWrapperPath, outputZipPath, {compression: COMPRESSION_LEVEL.high});

// * upload to release
await uploadReleaseAsset(`DeckySDH-PlayTime_${process.env.release_tag}.zip`, fs.readFileSync(outputZipPath));

];
async function uploadReleaseAsset(name, contents) {
await github.rest.repos.uploadReleaseAsset({
owner: context.repo.owner,
repo: context.repo.repo,
release_id: process.env.release_id,
name: name,
data: contents
});
}
function copyDirRecursive(parentPath, contents, dest) {
for (const file of contents) {
const fileName = file.name;
const srcPath = path.join(cwdPath, parentPath, fileName);
const destPath = path.join(cwdPath, dest, fileName);
if (fs.lstatSync(srcPath).isDirectory()) {
const dirContents = fs.readdirSync(srcPath, { withFileTypes: true });
const dirDestPath = path.join(dest, fileName);
fs.mkdirSync(dirDestPath, { recursive: true });
copyDirRecursive(path.join(parentPath, fileName), dirContents, dirDestPath);
} else {
fs.copyFileSync(srcPath, destPath);
}
}
}
const cwdPath = path.resolve(process.cwd());
// * build the plugin with `pnpm build`
child_process.execSync("pnpm build");
// * once finished, make folder with all files in includeInBuild
const bundleWrapperPath = path.join(cwdPath, "bundle");
const bundlePath = path.join(bundleWrapperPath, "SDH-PlayTime");
fs.mkdirSync(bundlePath, { recursive: true });
fs.mkdirSync(path.join(bundlePath, "dist"));
for (const fileToInclude of includeInBuild) {
const srcPath = path.join(cwdPath, fileToInclude);
const destPath = path.join(bundlePath, fileToInclude);
fs.copyFileSync(srcPath, destPath);
}
// * check contents of defaults
const defaultsPath = path.join(cwdPath, "defaults");
if (fs.existsSync(defaultsPath)) {
const defaultContents = fs.readdirSync(defaultsPath, { withFileTypes: true });
copyDirRecursive("defaults", defaultContents, `bundle${path.sep}SDH-PlayTime`);
}
// * check contents of dist
const distPath = path.join(cwdPath, "dist");
if (fs.existsSync(distPath)) {
const distContents = fs.readdirSync(distPath, { withFileTypes: true });
copyDirRecursive("dist", distContents, `bundle${path.sep}SDH-PlayTime${path.sep}/dist`);
}
// * zip
child_process.execSync("pnpm i zip-a-folder");
const { zip, COMPRESSION_LEVEL } = require('zip-a-folder');
const outputZipPath = path.join(cwdPath, "bundle.zip");
await zip(bundleWrapperPath, outputZipPath, {compression: COMPRESSION_LEVEL.high});
// * upload to release
await uploadReleaseAsset(`SDH-PlayTime.zip`, fs.readFileSync(outputZipPath));
publish-release:
needs: [create-release, build-plugin]
permissions:
Expand All @@ -170,14 +174,14 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: "dev"
ref: "master"

- name: Publish Release
id: publish-release
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
release_id: ${{ needs.create-release.outputs.release_id }}
with:
Expand All @@ -188,5 +192,5 @@ jobs:
release_id: process.env.release_id,
draft: false,
prerelease: true
})
})

0 comments on commit bbd7696

Please sign in to comment.