Skip to content

silicon-heaven/rust-nightly-release-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Rust release action

This action creates nightly releases.

WARNING: This action force pushes the nightly tag and overwrites the Nightly release! Use at your own risk!

Usage

name: Rust

on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]

jobs:
  create-nightly-release:
    name: Create nightly
    if: github.ref == 'refs/heads/main'
    needs: [build]
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v4

      - name: Consolidate artifacts
        uses: actions/download-artifact@v4
        with:
          pattern: '*-latest-nightly-binary'
          merge-multiple: true

      - name: Create release
        env:
          GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
        uses: silicon-heaven/[email protected]
        with: '*-latest-nightly-binary'

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published