├── .github ├── readme.png └── workflows │ └── deploy.yml ├── www ├── index.html └── edgerc.json └── README.md /.github/readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/docs-v2/HEAD/.github/readme.png -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | Migrated 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/edgerc.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "routing": { 4 | "trailing_slash": "never" 5 | }, 6 | "redirects": [ 7 | { 8 | "pattern": "^/(.*)$", 9 | "destination": "https://docs.ens.domains/" 10 | } 11 | ] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![readme](./.github/readme.png)](https://alpha-docs.ens.domains/?ref=github-banner) 2 | 3 | > This documentation has been deployed successfully at [ensdomains/docs](https://github.com/ensdomains/docs). 4 | > Please refer to that repository for the latest updates. 5 | 6 | The Ethereum Name Service (ENS) is a distributed, open, and extensible naming system based on the Ethereum blockchain. 7 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- 1 | name: 🚚 Deploy 2 | 3 | on: 4 | push: 5 | tags: 6 | - "v[0-9]+.[0-9]+.[0-9]+-[0-9]+" 7 | 8 | env: 9 | NODE_OPTIONS: "--max_old_space_size=8192" 10 | 11 | jobs: 12 | deploy: 13 | runs-on: ubuntu-20.04 14 | permissions: 15 | contents: write 16 | concurrency: 17 | group: ${{ github.workflow }}-${{ github.ref }} 18 | steps: 19 | - name: Checkout 20 | uses: actions/checkout@v3 21 | with: 22 | fetch-depth: 0 23 | 24 | - name: Edgeserver Upload 25 | uses: lvkdotsh/edgeserver-action@v0.1.2-pre.4 26 | with: 27 | app_id: "192287499052126208" 28 | server: https://api.edgeserver.io 29 | token: ${{ secrets.EDGESERVER_TOKEN }} 30 | directory: www 31 | --------------------------------------------------------------------------------