Skip to content

Actions(deps): Bump actions/upload-artifact from 4.3.1 to 4.3.2 #199

Actions(deps): Bump actions/upload-artifact from 4.3.1 to 4.3.2

Actions(deps): Bump actions/upload-artifact from 4.3.1 to 4.3.2 #199

Workflow file for this run

# This file is part of: Geiss screensaver and Winamp music visualization plug-in
# ___ ___ ___ ___ ___
# / __| __|_ _/ __/ __|
# | (_ | _| | |\__ \__ \
# \___|___|___|___/___/
# 3-Clause BSD License
#
# Copyright (c) 2022-2022 Sebastian Pipping <sebastian@pipping.org>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
name: Build for Windows using MSVC
on:
pull_request:
push:
schedule:
- cron: '0 2 * * 5' # Every Friday at 2am
jobs:
checks:
name: Build for 32bit x86 Windows using MSVC
runs-on: windows-2022
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: Configure build
run: |-
cmake -G "Visual Studio 17 2022" -A Win32 -DCMAKE_BUILD_TYPE=RelWithDebInfo .
- name: Build both plug-in and screensaver
run: |-
cmake --build .
- name: Build plug-in installer + prepare artifacts for upload
shell: bash
run: |-
set -x
find . -name .git -prune -o -type f | sort -f
cp -v */geiss_scr.exe bin_saver/geiss.scr # for upload
cp -v */vis_geis.dll bin_plugin/ # for upload and installer
./makensis_198 installer_PLUGIN.nsi # writes to bin_plugin/
find bin_*/ -type f | sort -f
mv bin_plugin/geiss4winamp_430.exe ./ # i.e. out of bin_plugin/
- name: Upload screensaver binary
uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba # v4.3.2
with:
name: "geiss_saver_430_${{ github.sha }}"
path: "bin_saver/*"
if-no-files-found: error
- name: Upload plug-in binary
uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba # v4.3.2
with:
name: "geiss4winamp_430_${{ github.sha }}"
path: "bin_plugin/*"
if-no-files-found: error
- name: Upload plug-in installer
uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba # v4.3.2
with:
name: "geiss4winamp_430_installer_${{ github.sha }}"
path: "geiss4winamp_430.exe"
if-no-files-found: error