Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Github Pages Installer #106

Merged
merged 5 commits into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,24 @@ on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "release"
cancel-in-progress: false

jobs:
release:
if: ${{ startsWith(github.ref, 'refs/tags/') }}
runs-on: ubuntu-latest
concurrency:
group: release-installer-${{ github.ref }}
cancel-in-progress: false
steps:
-
name: Checkout
Expand All @@ -28,3 +42,23 @@ jobs:
args: release --verbose --clean
env:
GITHUB_TOKEN: ${{ secrets.GHA_RELEASE }}
update-pages:
concurrency:
group: release-installer-${{ github.ref }}
cancel-in-progress: false
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './_scripts/installer'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
![eg](https://img.shields.io/badge/Powered%20By-NATS-green)
![GitHub License](https://img.shields.io/github/license/synadia-io/nex)
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/synadia-io/nex)
[![Go Report Card](https://goreportcard.com/badge/github.com/synadia-io/nex)](https://goreportcard.com/report/github.com/synadia-io/nex)
[![Go Reference](https://pkg.go.dev/badge/github.com/synadia-io/nex.svg)](https://pkg.go.dev/github.com/synadia-io/nex)

# NATS Execution Engine
Leverage and extend your investment in NATS infrastructure to deploy functions and services, turning NATS into the ultimate platform for building distributed applications.
Expand All @@ -14,7 +16,7 @@ The easiest way to get started with Nex is to check out our [Using Nex](https://
If you're already familiar with Nex and how it works, then you can get going quickly by installing the Nex CLI:

```
go install github.com/synadia-io/nex/nex@latest
curl -sSf https://nex.synadia.com/install.sh | sh
```

_**Note** that an installation method that doesn't require Go is coming soon._
jordan-rash marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
File renamed without changes.
Loading