add EPP_HOST_DELETE_RESPONSE_NOT_1000_OR_1001 to epp-24 #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-pages | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build-pages: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
pages: write | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: build | |
run: docker compose run pages | |
- name: package | |
run: tar --directory=_site -z -c -v -f github-pages . | |
- name: configure | |
uses: actions/configure-pages@v4 | |
- name: upload | |
uses: actions/upload-pages-artifact@v3 | |
- name: deploy | |
uses: actions/deploy-pages@v4 |