Skip to content

Commit

Permalink
fix: add release assets
Browse files Browse the repository at this point in the history
  • Loading branch information
autero1 committed Feb 23, 2024
1 parent c53f921 commit 393ac34
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
git config user.name github-actions
git config user.email github-actions@github.com
git add ./lib/index.js
git commit -m "chore(release): Add build assets"
git commit -m "chore(release): Add build assets" || echo "No changes to commit"
git push origin main
- uses: google-github-actions/release-please-action@v4
id: release
with:
Expand Down
6 changes: 3 additions & 3 deletions src/get-inputs-and-outputs.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as core from '@actions/core';
import {Inputs, Outputs} from './interfaces';
import * as path from 'path';
import fs from 'fs';
import * as path from 'path';
import { Inputs, Outputs } from './interfaces';

function showInputs(inps: Inputs): void {
core.info(`[INFO] TerragruntVersion: ${inps.TerragruntVersion}`);
Expand Down Expand Up @@ -45,7 +45,7 @@ export function getInputs(): Inputs {

if (tgVersion && tgVersionFile) {
core.warning(
'[WARN] Both terragrunt-version and terragrunt-version-file inputs are specified, only terragrunt-version will be used'
'[WARN] Both terragrunt-version and terragrunt-version-file inputs are specified. Only terragrunt-version will be used'
);
return prepareInputs(tgVersion);
}
Expand Down

0 comments on commit 393ac34

Please sign in to comment.