Scripts and GitHub Actions for creating versions of: NuGet, Docker Images, and others. Build mostly on CalVer - seamless date-based versioning system. You can check how it works by running the script below:
export BRANCH=feature-one RUN=8
curl -sSL https://raw.githubusercontent.com/astorDev/versy/refs/heads/main/versy | sh -s calver
Here's how the script result might look like:
Here are a few examples of packing things with CalVer using our helper tools:
Nuget with GitHub Action:
Here's what you should do to get your NuGet package published like this:
- Set repository secret
NUGET_API_KEY
- In your repo create
.github/workflows/nuget.yml
with
on:
push:
paths:
- 'my/awesome/lib/**'
- '.github/workflows/nuget.yml'
jobs:
publish:
name: Pack & Publish nuget
runs-on: ubuntu-latest
steps:
- uses: astorDev/versy/calver/nuget@main
with:
project: my/awesome/lib/My.Awesome.Lib
nuget-api-key: ${{ secrets.NUGET_API_KEY }}
Here's a colored view of a version you might get:
Docker Image with Gitlab:
Check out the details here
image: docker:24.0
stages:
- build
build-api:
stage: build
only:
changes:
- api/**/*
- .gitlab-ci.yml
script:
- export MAIN=dev
- export IMAGE=$CI_REGISTRY_IMAGE/api
- export DOCKERFILE_PATH=api/host/Dockerfile
- export BUILD_CONTEXT_PATH=api
- export USE_BUILDX=false
- apk add curl
- export SOURCING_URL=https://raw.githubusercontent.com/astorDev/versy/gitlab
- curl -sSL $SOURCING_URL/.sh | sh -s gitlab_calver_docker
From the repository root:
RUN=32 BRANCH=beta sh .sh calver
Installed locally:
Add the repo to the path, e.g. open the configuration file in VS Code (code ~/.bash_profile
) and add
export PATH="$PATH:/Users/egortarasov/repos/versy"
In a new shell session you should be able to run a command like this:
BRANCH=feature-one RUN=40 versy calver