diff --git a/README.md b/README.md index 19ef2e9..aff2ff4 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,17 @@ --- +> [!TIP] +> **Hire Tang Rufus!** +> +> I am looking for my next role, freelance or full-time. +> If you find this tool useful, I can build you more dev tools like this. +> Let's talk if you are hiring PHP / Ruby / Go developers. +> +> Contact me at https://typist.tech/contact/ + +--- + ## Usage See [action.yml](action.yml) and the underlying script [`typisttech/php-matrix`](https://github.com/typisttech/php-matrix/#options). @@ -86,6 +97,16 @@ See [action.yml](action.yml) and the underlying script [`typisttech/php-matrix`] | `lowest` | Lowest supported PHP versions | In `minor-only` mode, `7.3`

In `full` mode, `7.3.0` | | `highest` | Highest supported PHP versions | In `minor-only` mode, `8.4`

In `full` mode, `8.4.2` | +> [!TIP] +> **Hire Tang Rufus!** +> +> There is no need to understand any of these quirks. +> Let me handle them for you. +> I am seeking my next job, freelance or full-time. +> +> If you are hiring PHP / Ruby / Go developers, +> contact me at https://typist.tech/contact/ + ## Examples
diff --git a/action.yml b/action.yml index d3daafb..1d67a66 100644 --- a/action.yml +++ b/action.yml @@ -97,7 +97,7 @@ runs: env: GH_TOKEN: ${{ inputs.github-token }} - - name: Unarchive the binary + - name: Unarchive the Binary run: | mkdir bin tar -xvf php-matrix.tar.gz -C ./bin php-matrix @@ -110,10 +110,6 @@ runs: env: ACTION_PATH: ${{ github.action_path }} - - name: Print PHP Matrix Version - run: php-matrix --version - shell: bash - - name: Generate Matrix id: generate-matrix run: | @@ -139,3 +135,24 @@ runs: INPUT_COMPOSER_JSON: ${{ inputs.composer-json }} INPUT_MODE: ${{ inputs.mode }} INPUT_SOURCE: ${{ inputs.source }} + + - name: Print Info + if: ${{ !cancelled() }} + run: | + echo "==> Setup PHP Matrix" + echo -e "\033[32;m✓\033[0m \033[34;mphp-matrix\033[0m https://github.com/typisttech/php-matrix" + echo "::group::$ php-matrix --version" + php-matrix --version + echo "::endgroup::" + + echo "" + echo "==> Sponsor php-matrix-action" + echo -e "\033[32;m✓\033[0m \033[34;mphp-matrix-action\033[0m https://github.com/sponsors/tangrufus" + + echo "" + echo "==> Hire Tang Rufus" + echo "I am looking for my next role, freelance or full-time." + echo "If you find this tool useful, I can build you more dev tools like this." + echo "Let's talk if you are hiring PHP / Ruby / Go developers." + echo -e "\033[32;m✓\033[0m \033[34;mTang Rufus\033[0m https://typist.tech/contact" + shell: bash