mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2024-11-20 00:46:34 +00:00
Ignore changelog for now
This commit is contained in:
parent
196949d499
commit
5526d67cec
1 changed files with 11 additions and 11 deletions
22
.github/workflows/rust.yml
vendored
22
.github/workflows/rust.yml
vendored
|
@ -42,17 +42,17 @@ jobs:
|
|||
- name: Build release NRO
|
||||
id: build_release
|
||||
run: |
|
||||
# Grab changelog for beta description later
|
||||
# Grab latest tag, grab log vs. main, replace newlines with two newlines and a list marker
|
||||
changelog="- $(git log --pretty=format:%s `git tag --sort=-committerdate | head -1`...main | sed -z 's/\n/\n\n- /g')"
|
||||
# GH actions hate multiline strings. https://trstringer.com/github-actions-multiline-strings/
|
||||
changelog="${changelog//'%'/'%25'}"
|
||||
changelog="${changelog//$'\n'/'%0A'}"
|
||||
changelog="${changelog//$'\r'/'%0D'}"
|
||||
echo "changelog<<EOF" >> $GITHUB_ENV
|
||||
echo "$changelog" >> $GITHUB_ENV
|
||||
echo "EOF" >> $GITHUB_ENV
|
||||
echo "::set-output name=changelog::$changelog"
|
||||
# # Grab changelog for beta description later
|
||||
# # Grab latest tag, grab log vs. main, replace newlines with two newlines and a list marker
|
||||
# changelog="- $(git log --pretty=format:%s `git tag --sort=-committerdate | head -1`...main | sed -z 's/\n/\n\n- /g')"
|
||||
# # GH actions hate multiline strings. https://trstringer.com/github-actions-multiline-strings/
|
||||
# changelog="${changelog//'%'/'%25'}"
|
||||
# changelog="${changelog//$'\n'/'%0A'}"
|
||||
# changelog="${changelog//$'\r'/'%0D'}"
|
||||
# echo "changelog<<EOF" >> $GITHUB_ENV
|
||||
# echo "$changelog" >> $GITHUB_ENV
|
||||
# echo "EOF" >> $GITHUB_ENV
|
||||
# echo "::set-output name=changelog::$changelog"
|
||||
|
||||
# Actually build plugin
|
||||
PATH=$PATH:/root/.cargo/bin:/opt/devkitpro/devkitA64/bin /root/.cargo/bin/cargo-skyline skyline build --release
|
||||
|
|
Loading…
Reference in a new issue