-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improve: prepare github actions workflows
- Loading branch information
1 parent
bbeb0d8
commit 3f8b1e3
Showing
3 changed files
with
89 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Build and Release | ||
on: | ||
create: | ||
tags: | ||
- v* | ||
|
||
jobs: | ||
build: | ||
runs-on: arch-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Install Nuitka | ||
run: | | ||
sudo pacman -Syu | ||
sudo pacman -S python python-pip python wheel | ||
python -m pip install nuitka | ||
- name: Install Protry | ||
run: | | ||
curl -sSL https://install.python-poetry.org | python3 - | ||
- name: Prepare Enviroment | ||
run: | | ||
poetry install | ||
- name: Building... | ||
run: | | ||
python -m nuitka main.py --standalone --onefile --output-filename=yala --output-dir=dist/ | ||
- name: Compressing.... | ||
run: | | ||
cd dist | ||
tar -cf yala.tar.gz yala --auto-compress | ||
release: | ||
needs: build | ||
runs-on: arch-latest | ||
steps: | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: Release ${{ github.ref }} | ||
body: | | ||
This is a Release | ||
draft: true | ||
prerelease: false | ||
- name: Upload Release Asset | ||
id: upload_release_asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ./dist/yala.tar.gz | ||
asset_name: yala.tar.gz | ||
asset_content_type: application/octet-stream |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/bin/bash | ||
|
||
# Yala Version | ||
VERSION="v0.1.0" | ||
|
||
# Yala Filename | ||
FILENAME="yala-$VERSION.tar.gz" | ||
|
||
# Get latest Yala Release from GitHub | ||
URL="https://github.com/yossTheDev/yala/releases/download/$VERSION/$FILENAME" | ||
|
||
# Download | ||
echo Downloadig yala $VERSION | ||
wget $URL | ||
|
||
# Descompress File | ||
tar -xzf $FILENAME | ||
|
||
# Copy yala to user/bin/ directory | ||
sudo cp yala /usr/bin | ||
|
||
# Delete artifacts | ||
rm yala | ||
rm $FILENAME | ||
|
||
# Mostramos un mensaje de éxito | ||
echo "yala is suceffuly installed. Contratulations!!!" |