v1.3.1 #326
Workflow file for this run
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 workflow will upload a Python Package using Twine when a release is created | |
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | |
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Upload Python Package | |
on: | |
release: | |
types: [published] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: true | |
token: ${{ secrets.OXOTITAN_GITHUB_KEY }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18.0.0' | |
- name: Install Node dependencies | |
run: npm install | |
working-directory: src/oxotitan | |
- name: Generate Nuxt | |
run: npm run generate | |
working-directory: src/oxotitan | |
- name: Create ostorlab ui static folder | |
run: mkdir -p ostorlab/ui/static | |
working-directory: src | |
- name: Copy Nuxt output | |
run: cp -r src/oxotitan/.output/public/* src/ostorlab/ui/static | |
- name: Delete titan files | |
run: rm -rf src/oxotitan/* | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.x' | |
- name: Install SSH key | |
uses: shimataro/ssh-key-action@v2 | |
with: | |
key: ${{ secrets.WORKFLOW_SSH_KEY }} | |
known_hosts: ${{ secrets.KNOWN_HOSTS }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
- name: Build package | |
run: python -m build | |
- name: Archive package and upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: package | |
path: dist/* | |
- name: Publish package | |
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to ostorlab store | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.store_user }} | |
password: ${{ secrets.store_password }} | |
- name: truncate current tag | |
run: echo "TAG=$(echo $GITHUB_REF | cut -c12-17)" >> $GITHUB_ENV | |
- name: Build image and push to ostorlab Container Registry | |
uses: docker/build-push-action@v2 | |
with: | |
# relative path to the place where source code with Dockerfile is located | |
context: . | |
tags: | | |
ostorlab/oxo:${{env.TAG}} | |
ostorlab/oxo:latest | |
push: true |