Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Commit

Permalink
updated workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Pickering committed Nov 19, 2021
1 parent 33afe3d commit 8fbd418
Show file tree
Hide file tree
Showing 11 changed files with 4 additions and 7 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build_deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,12 @@ jobs:

- name: "Build deb"
run: |
ls
cd scripts
ls
cp -r "atlas-bi-<version>" "atlas-bi-$VERSION"
ls
cd "atlas-bi-$VERSION"
ls
find . -type f -name "*" -exec sed -i'' -e "s/<version>/$VERSION/g" {} +
echo "building"
debuild -us -uc
debuild --no-tgz-check -us -uc
cd ..
ls
env:
Expand Down
Binary file modified atlas/static/font/fontawesome/webfonts/fa-regular-400.eot
Binary file not shown.
Binary file modified atlas/static/font/fontawesome/webfonts/fa-regular-400.ttf
Binary file not shown.
Binary file modified atlas/static/font/fontawesome/webfonts/fa-regular-400.woff
Binary file not shown.
Binary file modified atlas/static/font/fontawesome/webfonts/fa-regular-400.woff2
Binary file not shown.
Binary file modified atlas/static/font/fontawesome/webfonts/fa-solid-900.eot
Binary file not shown.
Binary file modified atlas/static/font/fontawesome/webfonts/fa-solid-900.ttf
Binary file not shown.
Binary file modified atlas/static/font/fontawesome/webfonts/fa-solid-900.woff
Binary file not shown.
Binary file modified atlas/static/font/fontawesome/webfonts/fa-solid-900.woff2
Binary file not shown.
1 change: 1 addition & 0 deletions atlas/static/scss/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ img[data-src] {
display: none !important;
}

.search-wrap:active .search-results-wrap,
#search-form:focus-within #search-results
{
display:block;
Expand Down
4 changes: 2 additions & 2 deletions scripts/atlas-bi-<version>/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ copy files to ppa repo
docker run --rm -it -v $(PWD):/atlas ubuntu:latest /bin/bash

cd /atlas; \
VERSION=0.0.1; \
VERSION=0.0.1-rc.1; \
apt-get remove atlas-bi -y 2>/dev/null; \
rm -r "atlas-bi-$VERSION" 2>/dev/null; \
cp -r "atlas-bi-<version>" "atlas-bi-$VERSION" \
&& cd "atlas-bi-$VERSION" \
&& find . -type f -name "*" -exec sed -i'' -e "s/<version>/$VERSION/g" {} + \
&& debuild -us -uc \
&& debuild -us -uc --no-tgz-check \
&& cd .. \
&& apt-get install ./atlas-bi_*.deb -y

Expand Down

0 comments on commit 8fbd418

Please sign in to comment.