Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
shartte committed Jun 27, 2024
1 parent 5dd51db commit d93f5b8
Show file tree
Hide file tree
Showing 16 changed files with 30,093 additions and 20,114 deletions.
3 changes: 0 additions & 3 deletions CODEOWNERS

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright GitHub
Copyright Team AppliedEnergistics

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
17 changes: 0 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,28 +25,11 @@ follow the below instructions:
1. Click **Create repository**
1. Clone your new repository

> [!IMPORTANT]
>
> Make sure to remove or update the [`CODEOWNERS`](./CODEOWNERS) file! For
> details on how to use this file, see
> [About code owners](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners).
## Initial Setup

After you've cloned the repository to your local machine or codespace, you'll
need to perform some initial setup steps before you can develop your action.

> [!NOTE]
>
> You'll need to have a reasonably modern version of
> [Node.js](https://nodejs.org) handy (20.x or later should work!). If you are
> using a version manager like [`nodenv`](https://github.com/nodenv/nodenv) or
> [`nvm`](https://github.com/nvm-sh/nvm), this template has a `.node-version`
> file at the root of the repository that will be used to automatically switch
> to the correct version when you `cd` into the repository. Additionally, this
> `.node-version` file is used by GitHub Actions in any `actions/setup-node`
> actions.
1. :hammer_and_wrench: Install the dependencies

```bash
Expand Down
17 changes: 0 additions & 17 deletions __tests__/index.test.ts

This file was deleted.

89 changes: 0 additions & 89 deletions __tests__/main.test.ts

This file was deleted.

25 changes: 0 additions & 25 deletions __tests__/wait.test.ts

This file was deleted.

29 changes: 17 additions & 12 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,28 @@
name: 'The name of your action here'
description: 'Provide a description here'
author: 'Your name or organization here'
name: 'Publish Maven Artifact'
description:
'This action publishes a maven artifact from a local maven repository to a
remote repository.'
author: 'Team AppliedEnergistics'

# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'heart'
color: 'red'
color: 'purple'

# Define your inputs here.
inputs:
milliseconds:
description: 'Your input description here'
local-repository-path:
description: 'The path to the local Maven repository to publish from'
required: true
default: '1000'

# Define your outputs here.
outputs:
time:
description: 'Your output description here'
remote-repository-url:
description: 'The URL to the remote Maven repository'
required: true
remote-repository-username:
description: 'Username for the remote repository'
required: false
remote-repository-password:
description: 'Password for the remote repository'
required: false

runs:
using: node20
Expand Down
1 change: 0 additions & 1 deletion badges/coverage.svg

This file was deleted.

Loading

0 comments on commit d93f5b8

Please sign in to comment.