summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTina Müller (tinita) <cpan2@tinita.de>2021-11-10 18:03:02 +0100
committerGitHub <noreply@github.com>2021-11-10 18:03:02 +0100
commitf8f760f7387d2cc56a2fc7b1be313a3bf3f7f58c (patch)
tree5e5aac81eea0fa5fe89b7a50d35384d9ef17981f
parentacd6f6f014c25e46363e718381e0b35205df2d83 (diff)
downloadlibyaml-git-f8f760f7387d2cc56a2fc7b1be313a3bf3f7f58c.tar.gz
ci: Fix build on macOS (#230)HEADmaster
add-path was deprecated, see https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/
-rw-r--r--.github/workflows/main.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index e8ec497..c591a81 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -30,8 +30,8 @@ jobs:
if: ${{ matrix.os == 'macOS-latest' }}
run: |
brew install automake bash coreutils make
- echo ::add-path::/usr/local/opt/coreutils/libexec/gnubin
- echo ::add-path::/usr/local/opt/make/libexec/gnubin
+ echo "/usr/local/opt/coreutils/libexec/gnubin" >> $GITHUB_PATH
+ echo "/usr/local/opt/make/libexec/gnubin" >> $GITHUB_PATH
- name: Fetch branches
run: |
git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/*