Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump ansi-regex from 5.0.0 to 5.0.1 in /vue #10

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Manual trigger to build and upload to pages

on:
# Runs when manually triggered using the UI or API.
workflow_dispatch:

jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-20.04

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Runs a single command using the runners shell
- name: Greet
run: echo "Hello ${{ github.event.inputs.name }}"

- name: Disk space utils
run: |
brew install duf
brew install dust
brew install abitrolly/tap/tdu
duf

# Code checkout is not automatic
- name: Checkout
uses: actions/checkout@v2

- name: Install dependencies and free space
#run: sudo apt-get -y install $(grep "^[^#]" dependencies.txt)
run: |
pip install tqdm defusedxml
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/lib/android
dust /

- name: Build
env:
SITEMAP_URL: https://abitrolly.github.io/fedora-packages-static/
run: |
make all
duf
tdu -human

- name: Upload to GitHub Pages
uses: crazy-max/[email protected]
with:
# Git branch where assets will be deployed
#target_branch: # optional, default is gh-pages
# Create incremental commit instead of doing push force
keep_history: true # optional, default is false
# Allow an empty commit to be created
#allow_empty_commit: # optional, default is true
# Build directory to deploy
build_dir: public_html
# The committer name and email address
#committer: # optional
# The author name and email address
#author: # optional
# Commit message
#commit_message: # optional
# Write the given domain name to the CNAME file
#fqdn: # optional
# Allow Jekyll to build your site
jekyll: false # optional, default is true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8 changes: 8 additions & 0 deletions dependencies.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# System dependencies for building status package list for Fedora
#
# dnf install $(grep "^[^#]" dependencies.txt)

make
python3-defusedxml
python3-requests
python3-tqdm
6 changes: 3 additions & 3 deletions vue/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.