Skip to content

update http example #438

update http example

update http example #438

Workflow file for this run

# Workflow's name
name: linux-gcc
# Run this workflow every time a new commit pushed to your repository
on: [push, pull_request]
jobs:
linux-gcc:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Setup premake
uses: abel0b/setup-premake@v2.2
with:
version: "5.0.0-beta1"
- name: Build
run: |
chmod +x build.sh
./build.sh
- name: Test
run: chmod +x moon && ./moon test/main_test.lua
- name: Publish
run: |
mkdir publish
cp -r lualib publish/
cp -r service publish/
cp -r example publish/
cp -r test publish/
cp moon publish/
tar -zcvf linux-amd64.tar.gz -C publish .
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.3
with:
name: linux-amd64-${{ github.sha }}
path: publish/
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: linux-amd64.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}