Files
All-white/.gitea/workflows/release.yml
Quentin Millardet e2a9fd41a6
Some checks failed
Publish / Build and upload docker image (release) Failing after 18s
Ajout de l'ordre de compression
2025-05-22 18:54:10 +02:00

27 lines
693 B
YAML

name: Publish
on: release
jobs:
build-docker-image:
name: Build and upload docker image
runs-on: ubuntu-latest
steps:
- name: Pull source
uses: actions/checkout@v3
- name: Create dir
run: mkdir -p bin
- name : Compress dir
run: zip White-light.zip bin/White-light.wav bin/White-light.fseq
- name: Copy files
run: cp White-light.wav bin/ && cp White-light.fseq bin/ && cp White-light.zip bin/
- uses: akkuman/gitea-release-action@v1
env:
NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18
with:
files: |-
bin/**
- name: Remove file
run: rm -rdf bin/