Skip to content

Releases: artifact-keeper/artifact-keeper-example-plugin

v1.0.0-a1

06 Feb 21:53
d1e1133

Choose a tag to compare

Install into Artifact Keeper

Option A - ZIP upload (easiest):
Download the .zip below and upload it:

curl -X POST https://your-registry/api/v1/plugins/install/zip \
  -H "Authorization: Bearer $TOKEN" \
  -F "file=@unity-format-plugin-v1.0.0-a1.zip"

Option B - Git install:

curl -X POST https://your-registry/api/v1/plugins/install/git \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://github.com/artifact-keeper/artifact-keeper-example-plugin.git", "ref": "v1.0.0-a1"}'

Full Changelog: v0.1.0...v1.0.0-a1

v0.1.0

02 Feb 02:44
1ab2abf

Choose a tag to compare

Install into Artifact Keeper

Option A - ZIP upload (easiest):
Download the .zip below and upload it:

curl -X POST https://your-registry/api/v1/plugins/install/zip \
  -H "Authorization: Bearer $TOKEN" \
  -F "file=@unity-format-plugin-v0.1.0.zip"

Option B - Git install:

curl -X POST https://your-registry/api/v1/plugins/install/git \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://github.com/artifact-keeper/artifact-keeper-example-plugin.git", "ref": "v0.1.0"}'

Full Changelog: https://github.com/artifact-keeper/artifact-keeper-example-plugin/commits/v0.1.0