Merge pull request #906 from fewtarius/dev
Drop the changelog, fix broken dev build link.
This commit is contained in:
commit
2f1da364db
4 changed files with 1 additions and 28 deletions
5
.github/workflows/build-dev.yaml
vendored
5
.github/workflows/build-dev.yaml
vendored
|
@ -100,7 +100,7 @@ jobs:
|
||||||
* Decompress the image.
|
* Decompress the image.
|
||||||
* Write the image to an SDCARD using an imaging tool. Common imaging tools include [Balena Etcher](https://www.balena.io/etcher/), [Raspberry Pi Imager](https://www.raspberrypi.com/software/), and [Win32 Disk Imager](https://sourceforge.net/projects/win32diskimager/). If you're skilled with the command line, dd works fine too.
|
* Write the image to an SDCARD using an imaging tool. Common imaging tools include [Balena Etcher](https://www.balena.io/etcher/), [Raspberry Pi Imager](https://www.raspberrypi.com/software/), and [Win32 Disk Imager](https://sourceforge.net/projects/win32diskimager/). If you're skilled with the command line, dd works fine too.
|
||||||
|
|
||||||
Download: [[Ayaneo Air / Air Pro /Atari VCS/Generic x86_64](https://github.com/JustEnoughLinuxOS/distribution-dev/releases/download/JELOS-handheld.x86_64-${{ steps.version.outputs.version }}.img.gz)]
|
Download: [[Ayaneo Air / Air Pro /Atari VCS/Generic x86_64](https://github.com/JustEnoughLinuxOS/distribution-dev/releases/download/${{ steps.version.outputs.version }}/JELOS-handheld.x86_64-${{ steps.version.outputs.version }}.img.gz)]
|
||||||
|
|
||||||
## Upgrading
|
## Upgrading
|
||||||
* Download and install the update online via the System Settings menu.
|
* Download and install the update online via the System Settings menu.
|
||||||
|
@ -124,9 +124,6 @@ jobs:
|
||||||
## Contributing
|
## Contributing
|
||||||
* [Developing and Building JELOS](https://github.com/JustEnoughLinuxOS/distribution/blob/dev/BUILDING.md)
|
* [Developing and Building JELOS](https://github.com/JustEnoughLinuxOS/distribution/blob/dev/BUILDING.md)
|
||||||
|
|
||||||
## Change Log
|
|
||||||
${{ github.event.client_payload.release_notes }}
|
|
||||||
|
|
||||||
artifacts: "release/*"
|
artifacts: "release/*"
|
||||||
prerelease: false
|
prerelease: false
|
||||||
draft: true
|
draft: true
|
||||||
|
|
3
.github/workflows/build-main.yaml
vendored
3
.github/workflows/build-main.yaml
vendored
|
@ -123,9 +123,6 @@ jobs:
|
||||||
## Contributing
|
## Contributing
|
||||||
* [Developing and Building JELOS](https://github.com/JustEnoughLinuxOS/distribution/blob/dev/BUILDING.md)
|
* [Developing and Building JELOS](https://github.com/JustEnoughLinuxOS/distribution/blob/dev/BUILDING.md)
|
||||||
|
|
||||||
## Change Log
|
|
||||||
${{ github.event.client_payload.release_notes }}
|
|
||||||
|
|
||||||
artifacts: "release/*"
|
artifacts: "release/*"
|
||||||
prerelease: false
|
prerelease: false
|
||||||
draft: true
|
draft: true
|
||||||
|
|
10
.github/workflows/release-dev.yaml
vendored
10
.github/workflows/release-dev.yaml
vendored
|
@ -35,15 +35,6 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
echo "full_name=$(git config --get remote.origin.url | sed 's|^.*github.com/||g' | sed 's/.git$//g')" >> $GITHUB_OUTPUT
|
echo "full_name=$(git config --get remote.origin.url | sed 's|^.*github.com/||g' | sed 's/.git$//g')" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: changes
|
|
||||||
id: changes
|
|
||||||
run: |
|
|
||||||
release_notes="$(git log --after "$(date -d "yesterday" +%Y-%m-%d)" --pretty=format:"* %h: %s")"
|
|
||||||
release_notes="${release_notes//'%'/'%25'}"
|
|
||||||
release_notes="${release_notes//$'\n'/'%0A'}"
|
|
||||||
release_notes="${release_notes//$'\r'/'%0D'}"
|
|
||||||
echo "release_notes=${release_notes}" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: change_counter
|
- name: change_counter
|
||||||
id: counter
|
id: counter
|
||||||
run: |
|
run: |
|
||||||
|
@ -65,6 +56,5 @@ jobs:
|
||||||
{
|
{
|
||||||
"branch" : "${{ env.BRANCH }}",
|
"branch" : "${{ env.BRANCH }}",
|
||||||
"release_tag" : "${{steps.date.outputs.date}}",
|
"release_tag" : "${{steps.date.outputs.date}}",
|
||||||
"release_notes" : ${{toJSON(steps.changes.outputs.release_notes)}}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
11
.github/workflows/release-main.yaml
vendored
11
.github/workflows/release-main.yaml
vendored
|
@ -42,16 +42,6 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
echo "full_name=$(git config --get remote.origin.url | sed 's|^.*github.com/||g' | sed 's/.git$//g')" >> $GITHUB_OUTPUT
|
echo "full_name=$(git config --get remote.origin.url | sed 's|^.*github.com/||g' | sed 's/.git$//g')" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: changes
|
|
||||||
id: changes
|
|
||||||
run: |
|
|
||||||
prevrelcommit="$(git rev-list --tags --max-count=1)"
|
|
||||||
release_notes="$(git log ${prevrelcommit}..HEAD --pretty=format:"* %h: %s")"
|
|
||||||
release_notes="${release_notes//'%'/'%25'}"
|
|
||||||
release_notes="${release_notes//$'\n'/'%0A'}"
|
|
||||||
release_notes="${release_notes//$'\r'/'%0D'}"
|
|
||||||
echo "changes=$(echo ${release_notes} | wc -l)" >> $GITHUB_OUTPUT
|
|
||||||
echo "release_notes=${release_notes}" >> $GITHUB_OUTPUT
|
|
||||||
- name: Get date for artifacts
|
- name: Get date for artifacts
|
||||||
id: date
|
id: date
|
||||||
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT
|
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT
|
||||||
|
@ -67,6 +57,5 @@ jobs:
|
||||||
{
|
{
|
||||||
"branch" : "${{ env.BRANCH }}",
|
"branch" : "${{ env.BRANCH }}",
|
||||||
"release_tag" : "${{steps.date.outputs.date}}",
|
"release_tag" : "${{steps.date.outputs.date}}",
|
||||||
"release_notes" : ${{toJSON(steps.changes.outputs.release_notes)}}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue