Skip to content

Commit

Permalink
=github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWoroschilow committed Feb 19, 2023
1 parent fe7046b commit ba7fab5
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/deploy-apprepo-prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Deploy the build to the apprepo (PROD)
on:
push:
branches:
- main
workflow_dispatch: ~
schedule:
- cron: "0 0 1-7,15-21 * 3"
env:
DOCKER_BUILDKIT: 1
AUTHENTICATION: "${{ secrets.PROD_AUTHENTICATION }}"
TOKEN: "${{ secrets.PROD_TOKEN }}"
PACKAGE: ${{ secrets.PROD_PACKAGE }}


jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

# - name: preparation
# run: |

# mkdir --parents ./dist
# mkdir --parents ./app/.config/apprepo

# echo "[user]" > ./app/.config/apprepo/default.conf
# echo "token = ${AUTHENTICATION}" >> ./app/.config/apprepo/default.conf

# echo "${{ github.event.repository.name }}"

- name: build
run: |
docker-compose -f docker-compose.yaml build --no-cache --progress=plain
docker-compose -f docker-compose.yaml run appimage make all
# - name: deploy
# run: |

# docker-compose -f docker-compose.yaml run appimage /bin/sh -c \
# '/root/bin/Apprepo.AppImage upload /root/`ls /root/ | grep AppImage | head -n 1` --version-description=`date +"%d-%m-%Y"` --version-token=${TOKEN} --version-name="latest" --version-skip-check '

- name: release latest build
uses: andelf/nightly-release@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: latest
name: ${{ github.event.repository.name }} latest build'
body: 'This repo provides the AppImage build only. To get the application release notes please visit the home page of the app itself.'
prerelease: true
files: |
./app/*.AppImage

0 comments on commit ba7fab5

Please sign in to comment.