Skip to content

move number paramter to all and fix the api queries needed, Number is… #22

move number paramter to all and fix the api queries needed, Number is…

move number paramter to all and fix the api queries needed, Number is… #22

Workflow file for this run

name: Crystal CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
container:
image: crystallang/crystal
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: shards install
- name: Run tests
run: crystal spec
release:
runs-on: ubuntu-latest
container:
image: crystallang/crystal:latest-alpine
steps:
- uses: actions/checkout@v2
- run: |
shards build --production --release --static --no-debug
strip ./bin/flc
- name: Create Release Linux x64
id: create_release
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: bin/flc
tag_name: linux_x64
name: Release Linux x64
body: This is the new release of the Linux x64 flc binary file
draft: false
prerelease: false