github / maven-plugins

Official GitHub Maven Plugins
MIT License
587 stars 197 forks source link

Getting error: Error creating blob: Not Found (404) #146

Open sgrverma23 opened 3 years ago

sgrverma23 commented 3 years ago

Getting below error while using mvn deploy command:

[ERROR] Failed to execute goal com.github.github:site-maven-plugin:0.12:site (default) on project host-maven-repo-example: Error creating blob: Not Found (404) -> [Help 1] org.apache.maven.lifecycle.LifecycleExecutionException:

Below is the pom.xml


<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0
<groupId>org.example</groupId>
<artifactId>host-maven-repo-example</artifactId>
<version>1.0-SNAPSHOT</version>

<properties>
    <github.global.server>github</github.global.server>
    <maven.compiler.source>8</maven.compiler.source>
    <maven.compiler.target>8</maven.compiler.target>
</properties>

<distributionManagement>
    <repository>
        <id>internal.repo</id>
        <name>Temporary Staging Repository</name>
        <url>file://${project.build.directory}/mvn-artifact</url>
    </repository>
</distributionManagement>
<build>
<plugins>
    <plugin>
        <groupId>com.github.github</groupId>
        <artifactId>site-maven-plugin</artifactId>
        <version>0.12</version>
        <configuration>
            <message>Maven artifacts for ${project.version}</message>
            <noJekyll>true</noJekyll>
            <outputDirectory>${project.build.directory}/mvn-artifact
            </outputDirectory>
            <branch>refs/heads/mvn-artifact</branch>
            <includes>
                <include>**/*</include>
            </includes>
            <repositoryName>host-maven-repo-example</repositoryName>
            <repositoryOwner>sgrverma23</repositoryOwner>
            <server>github</server>
        </configuration>
        <executions>
            <execution>
                <goals>
                    <goal>site</goal>
                </goals>
                <phase>deploy</phase>
            </execution>
        </executions>
    </plugin>
    <plugin>
        <artifactId>maven-deploy-plugin</artifactId>
        <version>2.8.2</version>
        <configuration>
            <altDeploymentRepository>
                internal.repo::default::file://${project.build.directory}/mvn-artifact
            </altDeploymentRepository>
        </configuration>
    </plugin>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>3.1.0</version>
        <executions>
            <execution>
                <id>attach-sources</id>
                <goals>
                    <goal>jar</goal>
                </goals>
            </execution>
        </executions>
    </plugin>
</plugins>
</build>
<repositories>
    <repository>
        <id>PROJECT-NAME-mvn-repo</id>
        <url>https://github.com/sgrverma23/host-maven-repo-example</url>
        <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
        </snapshots>
    </repository>
</repositories>


Kindly suggest if any issue is present here.

HyperCodec commented 2 years ago

Having this same issue, don't know why it happens.

GalenRhodes commented 2 years ago

I'm having the same issue. Can't figure it out.