summaryrefslogtreecommitdiff
path: root/.gitea/workflows/deploy.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.gitea/workflows/deploy.yaml')
-rw-r--r--.gitea/workflows/deploy.yaml22
1 files changed, 0 insertions, 22 deletions
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 }}