Skip to content

test

test #525

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Build at 00:00 on every 12th day-of-month.
#schedule:
#- cron: "0 0 */12 * *"
# Triggers the workflow on push or pull request events but only for the test6 branch
push:
branches: [ test7 ]
paths-ignore: [ '**/README.md' ]
pull_request:
branches: [ test7 ]
paths-ignore: [ '**/README.md' ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build-stable"
build-stable:
# The type of runner that the job will run on
runs-on: ubuntu-latest
container: artixlinux/artixlinux:latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
# Runs a set of commands using the runners shell
- name: Build appimage
run: |
pacman -Syu --noconfirm base-devel curl desktop-file-utils git wget \
base-devel patchelf mesa-utils strace xorg-server-xvfb llvm
# Artix repos don't have zsyc
wget https://london.mirror.pkgbuild.com/extra/os/x86_64/zsync-0.6.2-5-x86_64.pkg.tar.zst
pacman -U --noconfirm ./zsync-0.6.2-5-x86_64.pkg.tar.zst
chmod +x ./deploy.sh && ./deploy.sh
echo $PWD
echo $CWD
ls -al
- name: release
uses: marvinpinto/action-automatic-releases@6273874b61ebc8c71f1a61b2d98e234cf389b303
with:
title: test build wine v9.x.x
automatic_release_tag: test7
prerelease: false
draft: false
files: /home/runner/work/WINE_AppImage/WINE_AppImage/*.AppImage*
repo_token: ${{ secrets.GITHUB_TOKEN }}