Skip to content
This repository has been archived by the owner on Feb 24, 2023. It is now read-only.

Commit

Permalink
docs: add deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
iamandrewluca committed Feb 24, 2023
1 parent d3f8caa commit c3a4f8d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# setup-phraseapp
# DEPRECATED `setup-phraseapp`

<p>
<a href="https://github.com/winify-ag/setup-phraseapp">
<img alt="GitHub Actions status" src="https://github.com/winify-ag/setup-phraseapp/workflows/test-local/badge.svg">
</a>
</p>
> **Warning:**
> This action is no longer supported, please consider using the official [`phrase/setup-cli`](https://github.com/phrase/setup-cli) action instead.
> Migration should be straight forward by replacing `winify-ag/setup-phraseapp@v3` action with `phrase/setup-cli@v1`
[![No Maintenance Intended](http://unmaintained.tech/badge.svg)](http://unmaintained.tech/)

This action sets [Phrase](https://phrase.com/) command line tool for API Management

Expand Down
6 changes: 6 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ const archMapper = {
}

async function run() {
core.warning([
'This action is no longer supported.',
'Please consider using the official action instead.',
'https://github.com/phrase/setup-cli'
].join('\n'));

try {
const phrase = 'phrase'
const osPlat = os.platform();
Expand Down

0 comments on commit c3a4f8d

Please sign in to comment.