Skip to content

Commit

Permalink
fix(rules): Update method of passing GitHub CI variables to current API
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Sep 20, 2024
1 parent 5013564 commit dfb4b3d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions rules/utilities.mk
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,10 @@ force:;

.PHONY: _gha
_gha:
echo "::set-output name=DISTDIR::$(DISTDIR)"
echo "::set-output name=PROJECT::$(PROJECT)"
echo "::set-output name=VERSION::$(call versioninfo,$(PROJECT))"
exec >> $${GITHUB_OUTPUT:-/dev/stdout}
echo "DISTDIR=$(DISTDIR)"
echo "PROJECT=$(PROJECT)"
echo "VERSION=$(call versioninfo,$(PROJECT))"

.PHONY: _glc
_glc: $(CI_JOB_NAME_SLUG).env
Expand Down

0 comments on commit dfb4b3d

Please sign in to comment.