Skip to content

Merge pull request #2 from vasiltop/cross-platform #10

Merge pull request #2 from vasiltop/cross-platform

Merge pull request #2 from vasiltop/cross-platform #10

Workflow file for this run

name: std-release
on:
push:
branches:
- main
paths:
- 'std/**'
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Release std
uses: softprops/action-gh-release@v1
with:
tag_name: std-${{ github.run_number }}
name: std library release
files: |
std/*
prerelease: false
draft: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}