Skip to content

Commit

Permalink
add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
DolceTriade committed Jan 3, 2024
1 parent 4606be9 commit 58b4f78
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: 'Release'

"on": workflow_dispatch

permissions:
contents: write
id-token: write
packages: write


concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true

jobs:
release:
runs-on: ["ubuntu-latest"]
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: HatsuneMiku3939/direnv-action@v1
- run: bazel run -c opt --embed_label="$(git describe --tags HEAD)" //blade:blade_push

0 comments on commit 58b4f78

Please sign in to comment.