Skip to content

chore: update zeromq from 6.0.0-beta.17 to 6.0.0-beta.19 #20

chore: update zeromq from 6.0.0-beta.17 to 6.0.0-beta.19

chore: update zeromq from 6.0.0-beta.17 to 6.0.0-beta.19 #20

Workflow file for this run

name: Version
on:
push:
branches:
- release/**
jobs:
version:
name: Version
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v23
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: |
experimental-features = nix-command flakes
- name: Verify Nix Installation
run: nix shell nixpkgs#nix-info -c nix-info -m
- name: Install Direnv With Nix
uses: aldoborrero/direnv-nix-action@v2
with:
use_nix_profile: true
nix_channel: nixpkgs
- name: Load PATH Changes
run: direnv exec . sh -c 'echo $PATH' > "$GITHUB_PATH"
- name: Load other environment changes
run: direnv export gha >> "$GITHUB_ENV"
- name: Install Dependencies
run: pnpm install
- name: Setup Git User
run: git-user:setup
- name: Create Release Pull Request
uses: changesets/action@v1
with:
version: pnpm run version
commit: 'chore: update versions'
title: 'chore: update versions'
setupGitUser: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}