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

feat: remove vendor deps; update go.mod deps and CI #242

Merged
merged 3 commits into from
Mar 26, 2024
Merged
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions .github/workflows/go-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
sonar:
name: Sonar
runs-on: ubuntu-latest
if: github.repository == 'vanilla-os/ABRoot'
steps:
- uses: actions/checkout@v4
with:
Expand Down
13 changes: 11 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: Go

on:
push:
branches: [ "main" ]

jobs:

Expand Down Expand Up @@ -36,8 +35,16 @@ jobs:

- name: Compress-manpage
run: tar -czvf abroot-man.tar.gz man/man1/abroot.1

- uses: actions/upload-artifact@v4
with:
name: abrootv2
path: |
abrootv2.tar.gz
abroot-man.tar.gz

- uses: softprops/action-gh-release@v1
- uses: softprops/action-gh-release@v2
if: github.repository == 'vanilla-os/ABRoot' && github.ref == 'refs/heads/main'
with:
token: "${{ secrets.GITHUB_TOKEN }}"
tag_name: "continuous"
Expand All @@ -46,9 +53,11 @@ jobs:
files: |
abrootv2.tar.gz
abroot-man.tar.gz

sonar:
name: Sonar
runs-on: ubuntu-latest
if: github.repository == 'vanilla-os/ABRoot'
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Compress-manpage
run: tar -czvf abroot-man.tar.gz man/man1/abroot.1

- uses: softprops/action-gh-release@v1
- uses: softprops/action-gh-release@v2
with:
token: "${{ secrets.GITHUB_TOKEN }}"
files: |
Expand Down
6 changes: 0 additions & 6 deletions debian/abroot.install

This file was deleted.

118 changes: 0 additions & 118 deletions debian/changelog

This file was deleted.

1 change: 0 additions & 1 deletion debian/compat

This file was deleted.

23 changes: 0 additions & 23 deletions debian/control

This file was deleted.

23 changes: 0 additions & 23 deletions debian/copyright

This file was deleted.

1 change: 0 additions & 1 deletion debian/files

This file was deleted.

2 changes: 0 additions & 2 deletions debian/gbp.conf

This file was deleted.

11 changes: 0 additions & 11 deletions debian/rules

This file was deleted.

1 change: 0 additions & 1 deletion debian/source/format

This file was deleted.

Loading