Fix push to ghcr.io #181
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
name: Continuous builds | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- NAME: Packages x86_64 | |
DOCKER_PLATFORM: linux/amd64 | |
- NAME: Packages arm64 | |
DOCKER_PLATFORM: linux/arm64/v8 | |
- NAME: Packages armhf | |
DOCKER_PLATFORM: linux/arm/v7 | |
- NAME: Lite AppImage x86_64 | |
DOCKER_PLATFORM: linux/amd64 | |
BUILD_LITE: 1 | |
name: ${{ matrix.NAME }} | |
env: | |
DOCKER_PLATFORM: ${{ matrix.DOCKER_PLATFORM }} | |
DIST: ${{ matrix.DIST }} | |
BUILD_LITE: ${{ matrix.BUILD_LITE }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Set up QEMU integration for Docker | |
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build in Docker | |
run: bash -ex ci/build-in-docker.sh | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build ${{ matrix.NAME }} | |
path: | | |
appimagelauncher*.deb* | |
appimagelauncher*.rpm* | |
appimagelauncher*.tar* | |
appimagelauncher-lite-*.AppImage* | |
upload: | |
name: Create release and upload artifacts | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
- name: Inspect directory after downloading artifacts | |
run: ls -alFR | |
- name: Create release and upload artifacts | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
WEBDAV_URL: ${{ secrets.WEBDAV_URL }} | |
WEBDAV_USER: ${{ secrets.WEBDAV_USER }} | |
WEBDAV_PASSWORD: ${{ secrets.WEBDAV_PASSWORD }} | |
run: | | |
env | grep GITHUB_ | grep -v GITHUB_TOKEN | |
wget -q https://github.com/TheAssassin/pyuploadtool/releases/download/continuous/pyuploadtool-x86_64.AppImage | |
chmod +x pyuploadtool-x86_64.AppImage | |
./pyuploadtool-x86_64.AppImage **/appimagelauncher*.{deb,rpm,tar*,AppImage*} |