diff options
Diffstat (limited to '.gitea/workflows')
| -rw-r--r-- | .gitea/workflows/build.yaml | 23 | ||||
| -rw-r--r-- | .gitea/workflows/deploy.yaml | 22 |
2 files changed, 0 insertions, 45 deletions
diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml deleted file mode 100644 index 684e638..0000000 --- a/.gitea/workflows/build.yaml +++ /dev/null @@ -1,23 +0,0 @@ -name: Build - -on: - push: - branches: - - '**' - pull_request: - branches: [master] - -jobs: - build: - runs-on: alpine - steps: - - name: Set up environment - shell: ash {0} - run: | - apk -U upgrade - apk add --no-cache git bash cmake build-base pkgconf glibmm2.66-dev dbus-dev - - uses: actions/checkout@v4 - - name: Build - run: | - cmake -B build - make -C build diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml deleted file mode 100644 index e60bec8..0000000 --- a/.gitea/workflows/deploy.yaml +++ /dev/null @@ -1,22 +0,0 @@ -name: Deploy - -on: - push: - tags: - - '**' - -jobs: - deploy: - container: buildenv:5 - steps: - - uses: actions/checkout@v4 - - name: Archive - run: | - DISTRIBUTION=$(echo $GITHUB_REF_NAME | awk -f .gitea/deploy.awk) - ln -s . $DISTRIBUTION - touch $DISTRIBUTION.tar.xz - tar --exclude="${DISTRIBUTION}/${DISTRIBUTION}*" --exclude-vcs -Jcvhf $DISTRIBUTION.tar.xz $DISTRIBUTION - - uses: akkuman/gitea-release-action@v1 - with: - files: "*.tar.xz" - token: ${{ secrets.API_KEY }} |
