Skip to content

Commit

Permalink
Starnamed v0.11.7 (#209)
Browse files Browse the repository at this point in the history
* To clean the entire repo due a massive code conflicts,
I deleted all non unique files and copy from commit  4ab5827  -- It's the rc to v0.11.7
* Files from commit 4ab5827 -- closer to tag v0.11.7-rc2
* Remove the development and debug comments
* clean repo

* ADD: docs
- Recreate a CHANGELOG.md using the releases information, to create a clean Change log of this project it self
- add the PROPOSAL-017.md info

EDIT: .gitignore
- ignore the vendor folder

* Add swagger pages to starnamed
* ADD: Docs
* Review the doc
  • Loading branch information
dsmello authored Mar 14, 2023
1 parent 3e2d39a commit 4d6cb5b
Show file tree
Hide file tree
Showing 360 changed files with 66,703 additions and 21,779 deletions.
217 changes: 0 additions & 217 deletions .circleci/config.yml

This file was deleted.

57 changes: 0 additions & 57 deletions .codecov.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .dockerignore

This file was deleted.

5 changes: 0 additions & 5 deletions .gitattributes

This file was deleted.

5 changes: 0 additions & 5 deletions .github/CODEOWNERS

This file was deleted.

40 changes: 0 additions & 40 deletions .github/dependabot.yml

This file was deleted.

11 changes: 0 additions & 11 deletions .github/workflows/linkchecker.yml

This file was deleted.

42 changes: 42 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true

jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
path: './client/docs/swagger-ui'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
Loading

0 comments on commit 4d6cb5b

Please sign in to comment.