X-Git-Url: https://git.openstreetmap.org./nominatim-ui.git/blobdiff_plain/90f2f8630fb1f10fdf7efd7d3dece86517cb2e7c..16f28ac4d03efe2e5e53766f26a6d6b0e4974c5f:/.github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1850544..a239e48 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,11 +10,11 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: - node-version: '10.x' + node-version: '16.x' - name: Install dependencies run: yarn install @@ -24,7 +24,7 @@ jobs: yarn build export VERSION=${GITREF/*v/} mkdir nominatim-ui-${VERSION} - mv dist LICENSE README.md nominatim-ui-${VERSION}/ + mv dist LICENSE README.md screenshot.png nominatim-ui-${VERSION}/ mkdir artifacts tar czf artifacts/nominatim-ui-${VERSION}.tar.gz nominatim-ui-${VERSION} zip -qr artifacts/nominatim-ui-${VERSION}.zip nominatim-ui-${VERSION} @@ -33,7 +33,6 @@ jobs: GITREF: ${{ github.ref }} - - uses: AButler/upload-release-assets@v2.0 + - uses: softprops/action-gh-release@v1 with: files: 'artifacts/*' - repo-token: ${{ secrets.GITHUB_TOKEN }}