Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
Signed-off-by: Wesley Gimenes <[email protected]>
  • Loading branch information
wehagy committed Oct 12, 2024
0 parents commit 93334f5
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/check-build-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# vim: softtabstop=2 shiftwidth=2 tabstop=2 expandtab
# vim: textwidth=80 colorcolumn=+1
---
name: Check Build Push

on:
# Allows manual workflow run (must in default branch to work)
workflow_dispatch:

jobs:
check:
runs-on: ubuntu-24.04
# container:
# image: bilelmoussaoui/flatpak-github-actions:freedesktop-24.08
# options: --privileged

steps:
- uses: actions/checkout@v4
with:
repository: 'wehagy/org.wezfurlong.wezterm'
#path: 'manifests'

- name: check
id: check
run:
- >-
SHA256_NEW="$(curl -sSL https://api.github.com/repos/wez/wezterm/commits/main
| jq --raw-output '.commit.tree.sha')"
- |
if ! grep "$SHA256_NEW" org.wezfurlong.wezterm.yml; then
SHA256_OLD="$(sed -n '/commit/{n;p;}' org.wezfurlong.wezterm.yml)"
sed "s/${SHA256_OLD}/${SHA256_NEW}" org.wezfurlong.wezterm.yml
fi
- >-
echo "hello"
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# repo-flatpak
8 changes: 8 additions & 0 deletions wehagy-repo.flatpakrepo
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[Flatpak Repo]
Title=wehagy
Url=https://wehagy.github.io/repo-flatpak/repo/
Homepage=https://wehagy.github.io/
Comment=Wehagy flatpak repository
Description=Wehagy flatpak repository
#Icon=https://wehagy.github.io/repo-flatpak/logo.svg
#GPGKey=mQINBFlD2sABEADsiUZUO...

0 comments on commit 93334f5

Please sign in to comment.