diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index e21c287bd3..0000000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Publish - -on: - push: - branches: [master] - paths: - - '**/Cargo.toml' - - '.github/workflows/publish.yml' - -jobs: - Publish: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - uses: hecrj/setup-rust-action@v1 - with: - rust-version: stable - components: rustfmt - - - name: Publish glutin_egl_sys to crates.io - continue-on-error: true - run: cd glutin_egl_sys && cargo publish --token ${{ secrets.cratesio_token }} - - - name: Publish glutin_gles2_sys to crates.io - continue-on-error: true - run: cd glutin_gles2_sys && cargo publish --token ${{ secrets.cratesio_token }} - - - name: Publish glutin_glx_sys to crates.io - continue-on-error: true - run: cd glutin_glx_sys && cargo publish --token ${{ secrets.cratesio_token }} - - - name: Publish glutin_wgl_sys to crates.io - continue-on-error: true - run: cd glutin_wgl_sys && cargo publish --token ${{ secrets.cratesio_token }} - - - name: Publish glutin to crates.io - continue-on-error: true - run: cd glutin && cargo publish --token ${{ secrets.cratesio_token }} diff --git a/glutin/Cargo.toml b/glutin/Cargo.toml index c5ddd7a775..1927d5f916 100644 --- a/glutin/Cargo.toml +++ b/glutin/Cargo.toml @@ -3,7 +3,7 @@ name = "glutin" version = "0.30.0-beta.1" authors = ["Kirill Chibisov "] description = "Cross-platform OpenGL context provider." -keywords = ["windowing", "opengl", "egl", "glx", "wgl", "cgl"] +keywords = ["windowing", "opengl", "egl"] license = "Apache-2.0" readme = "README.md" repository = "https://github.com/rust-windowing/glutin" diff --git a/glutin/README.md b/glutin/README.md new file mode 120000 index 0000000000..32d46ee883 --- /dev/null +++ b/glutin/README.md @@ -0,0 +1 @@ +../README.md \ No newline at end of file