-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add httpup stuff and update README. Also add github workflow actions
- Loading branch information
Showing
4 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: deploy | ||
|
||
on: | ||
push: | ||
# Run for all branches except the main branch | ||
branches-ignore: | ||
- main | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Update REPO file | ||
run: | | ||
wget -P /tmp -q https://crux.nu/files/httpup-0.5.0.tar.xz | ||
tar -C /tmp -xf /tmp/httpup-0.5.0.tar.xz httpup-0.5.0/httpup-repgen | ||
/tmp/httpup-0.5.0/httpup-repgen | ||
git add REPO | ||
- name: Push to remote | ||
run: | | ||
git config user.name "$(git log -n 1 --pretty=format:%an)" | ||
git config user.email "$(git log -n 1 --pretty=format:%ae)" | ||
bash -c "git commit -a -m '[auto] Update REPO file' && git push || exit 0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
README.md | ||
\.git* | ||
*~ | ||
\.*~ | ||
^jornada7xx\-arm\.httpup | ||
*work | ||
*.pkg.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# | ||
# /etc/ports/jornada7xx-arm.httpup: CRUX-ARM ports overlay for HP Jornada 710/720/728 | ||
# | ||
|
||
ROOT_DIR=/usr/ports/jornada7xx-arm | ||
URL=https://raw.githubusercontent.com/crux-arm/crux-ports-jornada7xx-arm/2.6/ | ||
|
||
# End of file |