Skip to content

Commit

Permalink
Merge branch 'master' into issue/107
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems authored Sep 17, 2023
2 parents a173443 + 5271454 commit 704b5b2
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
36 changes: 35 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
- name: Install toltecmk
run: pip install toltecmk requests==2.26.0
- name: Build packages
Expand All @@ -45,3 +45,37 @@ jobs:
with:
name: packages
path: release
- name: Save packages
uses: actions/upload-artifact@v3
with:
name: build
path: .build/package/dist
release:
needs: build
if: ${{ github.ref == 'refs/heads/master' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/download-artifact@v3
with:
name: build
path: .build
- name: Create Sentry release
uses: getsentry/action-release@v1
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
SENTRY_URL: https://sentry.eeems.codes
- name: Setup Sentry CLI
uses: mathieu-bour/setup-sentry-cli@v1
with:
version: latest
url: https://sentry.eeems.codes
token: ${{ secrets.SENTRY_AUTH_TOKEN }}
organization: ${{ secrets.SENTRY_ORG }}
project: ${{ secrets.SENTRY_PROJECT }}
- name: Upload debug artifacts
run: sentry-cli debug-files upload --include-sources .
2 changes: 1 addition & 1 deletion web/src/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ Uninstall Oxide

1. ``systemctl disable --now tarnish``
2. ``systemctl enable --now xochitl``
3. ``opkg remove erode fret oxide rot tarnish decay corrupt anxiety liboxide libsentry``
3. ``opkg remove -force-removal-of-dependent-packages liboxide``

0 comments on commit 704b5b2

Please sign in to comment.