Skip to content

Remove .0 suffix

Remove .0 suffix #46

Workflow file for this run

name: Deployment
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
container: swift:5.9-focal
steps:
- uses: actions/checkout@v4
- run: swift run SwiftWasmBlog
- uses: actions/upload-pages-artifact@v3
with:
path: Output
deploy:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/deploy-pages@v4
id: deployment