Skip to content

Commit

Permalink
Merge pull request #5 from kenmuse/kenmuse/corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
kenmuse authored Jun 6, 2024
2 parents 4fef58e + 9ad19d7 commit ee908b0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 13 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2024 RedGate and contributors
Copyright (c) 2024 Redgate and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The `setup-flyway` action will download and set up a requested version of the Fl
- `edition` - The edition of the Flyway CLI to set up. Can specify `community` or `enterprise`. **Default:** `community`.

> [!NOTE]
> The Flyway CLI supports 'windows-x64', 'linux-x64', 'macosx-arm64', 'macosx-x64', and 'linux-alpine-x64' platforms.
> The Flyway CLI supports `windows-x64`, `linux-x64`, `macosx-arm64`, `macosx-x64`, and `linux-alpine-x64` platforms.
> For all other platforms, the Java version of the Flyway CLI should be used.
### Basic Configuration
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'Setup RedGate Flyway'
name: 'Setup Redgate Flyway'
description: 'Set up a specific version of Flyway and add the
command-line tools to the PATH'
author: 'RedGate'
author: 'Redgate'
inputs:
version:
description: The version specification
Expand Down
13 changes: 4 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,18 @@
{
"name": "setup-flyway",
"version": "0.1.0",
"description": "Setup RedGate Flyway for Actions",
"description": "Setup Redgate Flyway for Actions",
"main": "dist/index.mjs",
"type": "module",
"scripts": {
"build": "yarn node ./esbuild.mjs",
"format": "yarn prettier --no-error-on-unmatched-pattern --config ./.prettierrc.yml --write \"**/*.{mts,ts,yml,yaml}\"",
"format:check": "yarn prettier --no-error-on-unmatched-pattern --config ./.prettierrc.yml --check \"**/*.{mts,ts,yml,yaml}\"",
"lint": "yarn eslint",
"lint:fix": "yarn eslint --fix",
"lint:check": "yarn eslint",
"lint": "yarn eslint --fix",
"prerelease": "yarn run build",
"release": "git add -f dist/index.js dist/cleanup.js",
"test": "yarn jest --config jest.config.ts",
"test-esm": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --config jest.config.ts",
"test-cmd1": "mkdir -p /tmp/runner/cache && INPUT_VERSION=\"10.0.0\" INPUT_ARCHITECTURE=x64 RUNNER_TOOL_CACHE=/tmp/runner/cache RUNNER_TEMP=/tmp/runner/tmp node dist/setup.mjs",
"test-cmd2": "mkdir -p /tmp/runner/cache && INPUT_VERSION=\"latest\" INPUT_ARCHITECTURE=x64 RUNNER_TOOL_CACHE=/tmp/runner/cache RUNNER_TEMP=/tmp/runner/tmp node dist/setup.mjs",
"test-cmd3": "mkdir -p /tmp/runner/cache && INPUT_VERSION=\"<10.5\" INPUT_ARCHITECTURE=x64 RUNNER_TOOL_CACHE=/tmp/runner/cache RUNNER_TEMP=/tmp/runner/tmp node dist/setup.mjs",
"test-cmd4": "mkdir -p /tmp/runner/cache && INPUT_VERSION=\"10.8\" INPUT_ARCHITECTURE=java RUNNER_TOOL_CACHE=/tmp/runner/cache RUNNER_TEMP=/tmp/runner/tmp node dist/setup.mjs"
"test": "yarn jest --config jest.config.ts"
},
"repository": "git+https://github.com/kenmuse/setup-flyway.git",
"keywords": [
Expand Down

0 comments on commit ee908b0

Please sign in to comment.