Skip to content

CI: release artifacts #3

CI: release artifacts

CI: release artifacts #3

Workflow file for this run

name: Releases
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
with:
path: artifacts
- name: Compress
run: |
tar -czvf gdcef-artifacts-godot_4-linux_x86_64.tar.gz artifacts/gdcef-artifacts-godot_4-linux_x86_64
tar -czvf gdcef-artifacts-godot_4-windows_x86_64.tar.gz artifacts/gdcef-artifacts-godot_4-windows_x86_64
- name: Do release
uses: ncipollo/release-action@v1
with:
artifacts: "gdcef-artifacts-godot_4-*.tar.gz"